-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·54 lines (54 loc) · 1.43 KB
/
package.json
File metadata and controls
executable file
·54 lines (54 loc) · 1.43 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
54
{
"name": "iteminfo",
"version": "1.0.0",
"description": "",
"main": "app.js",
"scripts": {
"test": "jest",
"testW": "jest --coverage --watchAll",
"test1": "echo 'Error: no test specified' && exit 1",
"seed": "node --max-old-space-size=1024 ./db/dataSeeder.js",
"build": "webpack -d --watch",
"start": "nodemon ./server/server.js",
"lint": "./node_modules/.bin/eslint"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^0.18.0",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"body-parser": "^1.18.3",
"express": "^4.16.2",
"jest": "^23.4.2",
"moment": "^2.22.2",
"mongoose": "^5.2.6",
"morgan": "^1.9.0",
"prop-types": "^15.6.2",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"underscore": "^1.9.1",
"webpack": "^3.11.0"
},
"devDependencies": {
"babel-jest": "^23.4.2",
"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-plugin-import": "^2.13.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.10.0",
"faker": "^4.1.0",
"gulp": "^3.9.1",
"jest-cli": "^23.4.2",
"jest-css-modules": "^1.1.0",
"jest-enzyme": "^6.0.2",
"style-loader": "^0.21.0",
"supertest": "^3.1.0"
}
}