forked from Front-End-Ninjas/description-item
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.43 KB
/
Copy pathpackage.json
File metadata and controls
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": "description-item",
"jest": {
"setupTestFrameworkScriptFile": "./spec/setupTests.js",
"verbose": true
},
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "webpack -d --watch",
"test": "jest",
"start": "nodemon server/server.js",
"seed-db": "node db/seed_data.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Front-End-Ninjas/description-item.git"
},
"author": "Nicolas Peyrichou",
"license": "ISC",
"bugs": {
"url": "https://github.com/Front-End-Ninjas/description-item/issues"
},
"homepage": "https://github.com/Front-End-Ninjas/description-item#readme",
"dependencies": {
"axios": "^0.18.0",
"body-parser": "^1.18.2",
"express": "^4.16.2",
"mongoose": "^5.0.7",
"nodemon": "^1.15.1",
"prop-types": "^15.6.0",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"webpack": "^3.11.0"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-jest": "^22.4.1",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"eslint": "^4.18.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.7.0",
"jest": "^22.4.2",
"react-test-renderer": "^16.2.0",
"supertest": "^3.0.0"
}
}