-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
49 lines (49 loc) · 1.62 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
{
"name": "flatris",
"license": "MIT",
"version": "1.0.0",
"description": "Tetris for millennials",
"dependencies": {
"gh-pages": "^2.1.1",
"lodash": "^4.17.4",
"prop-types": "^15.5.10",
"raf": "^3.3.0",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"react-redux": "^5.0.2",
"react-redux-layout": "^0.1.0",
"redux": "^3.6.0",
"redux-thunk": "^2.2.0",
"styled-components": "^1.4.3",
"sw-precache": "^5.0.0"
},
"devDependencies": {
"prettier": "^0.18.0",
"pushstate-server": "^2.2.1",
"react-component-playground": "^2.0.0-beta.12",
"react-cosmos": "^2.0.0-beta.12",
"react-cosmos-normalize-props-proxy": "2.0.0-beta.11",
"react-cosmos-redux-proxy": "2.0.0-beta.11",
"react-cosmos-telescope": "^2.0.0-beta.12",
"react-cosmos-webpack": "^2.0.0-beta.12",
"react-scripts": "0.9.5",
"webpack": "1.14.0"
},
"scripts": {
"start": "react-scripts start",
"gen-service-worker": "sw-precache --config=sw-precache-config.js",
"build": "react-scripts build && npm run gen-service-worker",
"update-docs": "rm -rf docs/* && cp -r build/* docs",
"start-docs": "npm run update-docs && pushstate-server docs",
"format": "prettier --write 'src/**/*.{js,jsx}' '*.{js,jsx}' 'cosmos/**/*.{js,jsx}' --single-quote",
"test": "npm run format && CI=y react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"cosmos": "NODE_ENV=development cosmos",
"predeploy": "npm run build",
"deploy": "gh-pages -d build"
},
"eslintConfig": {
"extends": "react-app"
},
"homepage": "https://DevAshleyD.github.io/React-Tetris"
}