-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.07 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
{
"name": "chatbot-backoffice-frontend",
"homepage": "https://1140864.github.io/chatbot-backoffice-frontend",
"version": "0.1.0",
"babel": {
"presets": [
"es2015",
"react"
]
},
"private": true,
"jest": {
"verbose" : true,
"collectCoverageFrom" : ["**/*.{js,jsx}", "!**/node_modules/**", "!**/vendor/**"],
"transform": {".*": "<rootDir>/node_modules/jest-css-modules"}
},
"dependencies": {
"axios": "^0.16.2",
"prop-types": "^15.5.10",
"react": "^15.6.1",
"react-bootstrap": "^0.31.2",
"react-dom": "^15.6.1",
"react-router-bootstrap": "^0.24.2",
"react-router-dom": "^4.1.2",
"react-scripts": "1.0.11"
},
"scripts": {
"predeploy": "npm run build",
"deploy": "gh-pages -d build",
"start": "react-scripts start",
"build": "react-scripts build",
"test": "jest",
"eject": "react-scripts eject"
},
"devDependencies": {
"babel-jest": "^20.0.3",
"enzyme": "^2.9.1",
"jest-css-modules": "^1.1.0",
"react-test-renderer": "^15.6.1",
"regenerator-runtime": "^0.11.0"
}
}