-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
31 lines (31 loc) · 1.11 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
{
"name": "playlister-react",
"version": "0.3.0",
"private": true,
"homepage": "https://matita.github.io/playlister",
"dependencies": {
"react": "^15.6.2",
"react-dom": "^15.6.2"
},
"devDependencies": {
"browser-request": "^0.3.3",
"gh-pages": "^2.0.1",
"react-player": "^0.18.0",
"react-scripts": "1.0.6",
"youtube-search": "^1.1.4"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"for-gh-pages": "(if exist docs rmdir docs /s /q) && move build docs",
"preversion": "npm run build && npm run for-gh-pages && npm run commit-docs",
"postversion": "git push origin master && git push --tags origin master",
"commit-docs": "git add --all \"docs/*\" && git commit -m \"built for release\"",
"serve-production": "xcopy build playlister /e /i /h /r /y && http-server . -p 9000 -o \"http://localhost:9000/playlister\"",
"test-build": "npm run build && npm run serve-production",
"predeploy": "npm run build",
"deploy": "gh-pages -d build"
}
}