-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.23 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
{
"name": "npoem",
"license": "MIT",
"version": "0.1.0",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint . --ext .ts,.tsx",
"type-check": "tsc --noEmit"
},
"pre-commit": [
"lint",
"type-check"
],
"dependencies": {
"@apollo/react-hooks": "^3.1.5",
"apollo-boost": "^0.4.9",
"graphql": "^15.1.0",
"next": "9.4.4",
"react": "16.13.1",
"react-dom": "16.13.1",
"recoil": "0.0.7"
},
"devDependencies": {
"@types/node": "^14.0.6",
"@types/react": "^16.9.35",
"@types/recoil": "0.0.1",
"@typescript-eslint/eslint-plugin": "^3.0.2",
"@typescript-eslint/parser": "^3.0.2",
"@zeit/next-sass": "^1.0.1",
"eslint": "^7.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-standard": "^4.0.1",
"postcss-flexbugs-fixes": "^4.2.1",
"postcss-pixels-to-rem": "^0.8.0",
"postcss-preset-env": "^6.7.0",
"pre-commit": "^1.2.2",
"prettier": "^2.0.5",
"sass": "^1.26.7",
"typescript": "^3.9.3"
}
}