forked from pankajladhar/speedy-math
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
28 lines (28 loc) · 845 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
{
"name": "speedy-math",
"homepage": ".",
"version": "0.1.0",
"private": true,
"devDependencies": {
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"react-front-cli": "^1.1.3",
"react-scripts": "1.1.4",
"react-test-renderer": "^16.4.1",
"run-git-command": "^1.2.1"
},
"dependencies": {
"react": "^16.4.1",
"react-dom": "^16.4.1",
"react-router-dom": "^4.3.1",
"workbox-cli": "^3.3.1"
},
"scripts": {
"start": "react-scripts start",
"build": "PUBLIC_URL=. react-scripts build",
"postbuild": "node ./scripts/copy.js && node ./scripts/delete.js && ./node_modules/.bin/workbox injectManifest",
"release": "npm run build && git checkout gh-pages && sh ./build.sh",
"test": "react-scripts test --env=jsdom",
"test:coverage": "npm run test -- --coverage"
}
}