-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.49 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
{
"name": "server",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "nodemon server.js",
"start": "NODE_ENV=production node server.js",
"build": "next build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"precommit": "NODE_ENV=production lint-staged",
"lint-staged": {
"*.{js,jsx}": [
"pretty-quick --staged",
"eslint ./ --fix",
"git add"
]
},
"author": "",
"license": "ISC",
"dependencies": {
"@zeit/next-sass": "^1.0.1",
"axios": "^0.18.1",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"helmet": "^3.18.0",
"hoist-non-react-statics": "^3.3.0",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.11",
"moment": "^2.24.0",
"mongodb": "^3.2.7",
"mongoose": "^5.6.0",
"multer": "^1.4.1",
"next": "^8.1.0",
"node-sass": "^4.12.0",
"normalize-scss": "^7.0.1",
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-dates": "^20.2.4",
"react-dom": "^16.8.6",
"react-google-recaptcha": "^1.0.5"
},
"devDependencies": {
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^4.3.0",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.13.0",
"husky": "^2.4.1",
"lint-staged": "^8.2.1",
"prettier": "^1.18.2",
"pretty-quick": "^1.11.1"
}
}