-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
66 lines (66 loc) · 1.82 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
61
62
63
64
65
66
{
"name": "khoone-bemoon",
"version": "0.1.0",
"firstName": "khoone-bemoon",
"main": "server.js",
"private": true,
"scripts": {
"dev": "cross-env NODE_ENV=development next",
"devp": "cross-env NODE_ENV=production next",
"build": "next build",
"start": "next start",
"run:prd": "next build && cross-env NODE_ENV=production pm2 start server.js -i max -n run:prd",
"run:stg": "next build && cross-env NODE_ENV=staging pm2 start server.js -i max -n run:stg"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged "
}
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --config .prettierrc --write",
"git add"
]
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"dependencies": {
"@zeit/next-sass": "^1.0.1",
"autoprefixer": "^9.7.4",
"cross-env": "^7.0.2",
"husky": "^4.2.3",
"isomorphic-unfetch": "^3.0.0",
"lint-staged": "^10.0.8",
"next": "9.3.2",
"next-fonts": "^1.0.3",
"next-manifest": "^3.0.1",
"next-offline": "^5.0.0",
"next-workbox-webpack-plugin": "^2.1.1",
"node-sass": "^4.13.1",
"postcss-easy-import": "^3.0.0",
"react": "16.13.0",
"react-dom": "16.13.0",
"react-jss": "^10.0.4",
"styled-components": "^5.0.1",
"tsconfig-paths-webpack-plugin": "^3.2.0",
"webpack-pwa-manifest": "^4.2.0"
},
"devDependencies": {
"@babel/core": "^7.8.7",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@svgr/webpack": "^5.2.0",
"@types/next": "^9.0.0",
"@types/react": "^16.9.23",
"@types/react-paginate": "^6.2.1",
"@types/styled-components": "^5.0.1",
"@zeit/next-typescript": "^1.1.1",
"babel-plugin-styled-components": "^1.10.7",
"prettier": "^1.19.1",
"typescript": "^3.8.3"
}
}