-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (42 loc) · 1.17 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
{
"name": "Hangman",
"version": "0.1.1",
"description": "Hangman Progressive Web App, made with node, React, service workers and storage of state in the browser",
"homepage": "https://selva-oscura.github.io/react-hangman",
"repository": {
"type": "git",
"url": "git+https://github.com/selva-oscura/react-hangman.git"
},
"keywords": [
"JS",
"React",
"create-react-app",
"PWA",
"sw-precache"
],
"author": "Carol St. Louis",
"license": "MIT",
"bugs": {
"url": "https://github.com/selva-oscura/react-hangman/issues"
},
"private": true,
"devDependencies": {
"gh-pages": "^0.12.0",
"react-scripts": "0.7.0",
"sw-precache": "^4.2.2"
},
"dependencies": {
"react": "^15.3.2",
"react-dom": "^15.3.2"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build && cp manifest.json build/ && sw-precache --root='build/' --static-file-globs='build/**/!(*map*)'",
"deploy" : "npm run build&&gh-pages -d build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": "./node_modules/react-scripts/config/eslint.js"
}
}