-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.37 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.37 KB
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
{
"name": "",
"version": "1.0.0",
"description": "",
"author": "",
"license": "",
"engines": {
"node": ">=6.13.0"
},
"scripts": {
"db:seed": "node generate.js",
"start": "nodemon server/index.js",
"react-dev": "webpack -d --watch",
"test": "jest --coverage --forceExit",
"lint": "eslint client/src",
"start:pro": "node generate.js && nodemon server/"
},
"dependencies": {
"babel-jest": "^23.4.0",
"body-parser": "^1.18.3",
"express": "^4.16.3",
"faker": "^4.1.0",
"mongoose": "^5.2.4",
"npm": "^6.4.1",
"prop-types": "^15.6.2",
"react": "^16.7.0",
"react-dom": "^16.7.0",
"react-fontawesome": "^1.6.1",
"regenerator-runtime": "^0.12.0"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"css-loader": "^1.0.0",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^17.0.0",
"eslint-config-airbnb-standard": "^2.1.6",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.10.0",
"grunt": "^1.0.3",
"grunt-aws-s3": "^2.0.0",
"jest": "^23.6.0",
"style-loader": "^0.21.0",
"supertest": "^3.1.0",
"webpack": "^4.16.1",
"webpack-cli": "^3.0.8"
}
}