forked from fortyfournorth/pokemon-pagination
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.62 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "pagination",
"version": "1.1.0",
"main": "index.js",
"author": "Christopher Vachon <[email protected]>",
"license": "MIT",
"scripts": {
"dev": "yarn knex:latest && next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"knex:make": "knex migrate:make ",
"knex:latest": "knex migrate:latest ",
"knex:up": "knex migrate:up ",
"knex:down": "knex migrate:down "
},
"devDependencies": {
"@44north/eslint-config": "^1.2.0",
"@44north/prettier-config": "^1.1.0",
"@types/react": "^17.0.11",
"@types/react-dom": "^17.0.8",
"@typescript-eslint/eslint-plugin": "^4.28.0",
"@typescript-eslint/parser": "^4.28.0",
"autoprefixer": "^10.4.0",
"axios": "^0.21.1",
"eslint": "^7.29.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-html": "^6.1.2",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jest": "^24.3.6",
"eslint-plugin-jest-extended": "^0.0.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"postcss": "^8.4.4",
"prettier": "^2.3.1",
"tailwindcss": "^3.0.0",
"typescript": "^4.5.2"
},
"dependencies": {
"@44north/classnames": "^0.1.0",
"@apollo/client": "^3.3.20",
"@headlessui/react": "^1.4.2",
"@heroicons/react": "^1.0.5",
"@tailwindcss/aspect-ratio": "^0.4.0",
"apollo-server-micro": "^2.25.2",
"graphql": "^15.5.1",
"knex": "^0.95.14",
"next": "^12.0.7",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"sqlite3": "^5.0.2"
}
}