-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
60 lines (60 loc) · 1.57 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": "suplmntl",
"version": "1.0.0",
"description": "",
"author": "Tristan Wright",
"license": "ISC",
"engines": {
"node": "10.16"
},
"dependencies": {
"axios": "0.19.0",
"bcryptjs": "2.4.3",
"body-parser": "1.19.0",
"cookie-parser": "1.4.4",
"dotenv": "8.2.0",
"express": "4.17.1",
"helmet": "3.21.2",
"history": "4.10.1",
"jsonwebtoken": "8.5.1",
"less-middleware": "3.1.0",
"mailgun-js": "0.22.0",
"moment": "2.24.0",
"mongoose": "5.10.9",
"prop-types": "15.7.2",
"react": "16.12.0",
"react-beautiful-dnd": "13.0.0",
"react-cookie": "4.0.1",
"react-dom": "16.12.0",
"react-redux": "7.2.0",
"react-router": "5.1.2",
"react-router-dom": "5.1.2",
"redux": "4.0.4",
"redux-thunk": "2.3.0",
"serve-favicon": "2.5.0"
},
"devDependencies": {
"@babel/core": "7.7.2",
"@babel/preset-env": "7.7.1",
"@babel/preset-react": "7.7.0",
"babel-loader": "8.0.6",
"eslint": "6.8.0",
"eslint-config-airbnb": "18.0.1",
"eslint-loader": "3.0.2",
"eslint-plugin-import": "2.18.2",
"eslint-plugin-jsx-a11y": "6.2.3",
"eslint-plugin-react": "7.16.0",
"mocha": "7.1.0",
"nyc": "15.0.0",
"webpack": "4.41.2",
"webpack-cli": "3.3.10"
},
"scripts": {
"start": "node server.js",
"build": "webpack",
"build:prod": "NODE_ENV=production npm run build",
"test": "NODE_ENV=test nyc --reporter=html --reporter=text mocha tests/*.spec.js --exit",
"watch": "webpack --mode development --watch",
"postinstall": "npm run build"
}
}