-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.66 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "movieholic",
"version": "1.0.1",
"description": "Online Movie - Series Renting Application",
"main": "index.js",
"engines": {
"node": "11.3.0",
"npm": "6.4.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vkouk/movieholic.git"
},
"author": "Vasilis Koukoutis(vkouk)",
"license": "ISC",
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.12",
"@fortawesome/free-brands-svg-icons": "^5.6.3",
"@fortawesome/free-solid-svg-icons": "^5.6.3",
"@fortawesome/react-fontawesome": "^0.1.3",
"axios": "^0.18.0",
"bootstrap": "^4.2.1",
"lodash": "^4.17.11",
"moment": "^2.23.0",
"node-sass": "^4.11.0",
"normalize.css": "^8.0.1",
"react": "16.7.0",
"react-dom": "16.7.0",
"react-redux": "^5.1.1",
"react-router-dom": "^4.3.1",
"react-scripts": "2.0.5",
"react-stripe-checkout": "^2.6.3",
"reactstrap": "^6.5.0",
"redux": "^4.0.1",
"redux-persist": "^5.10.0",
"redux-thunk": "^2.3.0",
"serve": "^10.1.1",
"tachyons": "^4.11.1"
},
"devDependencies": {
"husky": "^1.2.1",
"redux-mock-store": "^1.5.3"
},
"scripts": {
"dev": "react-scripts start",
"start": "serve -s build",
"build": "react-scripts build",
"test": "react-scripts test",
"test:coverage": "npm test -- --coverage",
"eject": "react-scripts eject",
"heroku-postbuild": "npm run test:coverage && npm run build"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"husky": {
"hooks": {
"pre-push": "npm run test:coverage"
}
}
}