-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 997 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
38
39
40
{
"name": "Youtube Video Chainer",
"homepage": "https://lehren.github.io/youtube-tree-vids",
"version": "0.1.0",
"private": true,
"dependencies": {
"axios": "^0.16.2",
"normalize.css": "^7.0.0",
"prop-types": "^15.5.10",
"react": "^15.5.4",
"react-bootstrap": "^0.31.0",
"react-dom": "^15.5.4",
"react-youtube": "^7.4.0"
},
"devDependencies": {
"enzyme": "^2.8.2",
"gh-pages": "^1.0.0",
"husky": "^0.13.4",
"lint-staged": "^3.6.0",
"prettier": "^1.4.4",
"react-addons-test-utils": "^15.5.1",
"react-scripts": "1.0.7",
"react-test-renderer": "^15.5.4"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"precommit": "lint-staged",
"predeploy": "npm run build",
"deploy": "gh-pages -d build"
},
"lint-staged": {
"src/**/*.*": [
"prettier --write",
"git add"
]
}
}