-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.61 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
56
57
58
59
60
{
"name": "GraphQL-SSR",
"version": "1.0.0",
"main": "index.js",
"author": "vinh_nguyen1211@yahoo.com.vn",
"scripts": {
"build": "NODE_ENV=production next build",
"dev": "next dev -p 3007",
"start": "next start -p 3007",
"lint": "eslint . --ext .js,.tsx,.ts",
"lint:fix": "eslint . --ext .js,.tsx,.ts --fix"
},
"dependencies": {
"@apollo/react-hooks": "^3.1.5",
"@zeit/next-sass": "^1.0.1",
"apollo": "^2.27.3",
"apollo-boost": "^0.4.4",
"apollo-link-error": "^1.1.12",
"classnames": "^2.2.6",
"graphql": "^15.0.0",
"graphql-tag": "^2.10.3",
"isomorphic-unfetch": "^3.0.0",
"linaria": "1.3.3",
"next": "^9.3.6-canary.6",
"next-with-apollo": "^5.0.0",
"node-sass": "^4.13.1",
"postcss-import": "^12.0.1",
"react": "^16.13.1",
"react-dom": "^16.13.1"
},
"devDependencies": {
"@fullhuman/postcss-purgecss": "^2.1.2",
"@types/classnames": "^2.2.10",
"@types/react": "^16.9.34",
"@types/react-dom": "^16.9.6",
"@typescript-eslint/eslint-plugin": "2",
"@typescript-eslint/parser": "^2.29.0",
"autoprefixer": "^9.7.6",
"babel-plugin-classnames": "^0.2.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.1.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-react-hooks": "^3.0.0",
"postcss-preset-env": "^6.7.0",
"prettier": "^2.0.5",
"tailwindcss": "^1.3.4",
"typescript": "^3.7.5"
},
"private": true,
"browserslist": [
">0.3%",
"not ie 11",
"not dead",
"not op_mini all"
],
"volta": {
"node": "12.16.2"
}
}