-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1022 Bytes
/
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
{
"name": "my-movies",
"version": "0.1.0",
"private": true,
"dependencies": {
"bootstrap": "4.0.0-beta.3",
"jwt-decode": "^2.2.0",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-router-dom": "^4.2.2",
"react-scripts": "1.0.17",
"react-select": "^1.2.1",
"reactstrap": "^5.0.0-alpha.4"
},
"scripts": {
"start": "PORT=3001 react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"coveralls": "cat ./coverage/lcov.info | node node_modules/.bin/coveralls",
"eject": "react-scripts eject",
"deploy": "npm run build && mv build/index.html build/200.html && surge"
},
"devDependencies": {
"coveralls": "^3.0.0",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"react-test-renderer": "^16.2.0"
},
"jest": {
"collectCoverageFrom": [
"src/components/**/*.{js,jsx}",
"src/api/**/*.{js,jsx}",
"src/helpers/**/*.{js,jsx}",
"!<rootDir>/node_modules/"
]
}
}