forked from sidaw/shrdlurn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.84 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
50
51
52
{
"name": "shrdlurn",
"description": "teach the computer your language",
"repository": {
"type": "git",
"url": "https://github.com/sidaw/shrdlurn.git"
},
"author": "Sida Wang <[email protected]> and Sam Ginn <[email protected]>",
"license": "MIT",
"homepage": "http://www.voxelurn.com",
"devDependencies": {
"gh-pages": "^0.12.0",
"react-addons-perf": "^15.4.2",
"react-scripts": "0.9.0"
},
"dependencies": {
"color-name": "^1.1.2",
"classnames": "^2.2.5",
"deep-equal": "^1.0.1",
"hashids": "^1.1.1",
"isomer": "^0.2.6",
"lz-string": "^1.4.4",
"moment": "^2.17.1",
"mousetrap": "^1.6.0",
"normalize.css": "^5.0.0",
"react": "^15.3.2",
"react-dom": "^15.3.2",
"react-inlinesvg": "^0.5.4",
"react-onclickoutside": "^5.9.0",
"react-redux": "^4.4.5",
"react-router": "^3.0.1",
"react-router-redux": "^4.0.8",
"redux": "^3.6.0",
"redux-persist": "^4.1.0",
"redux-thunk": "^2.1.0",
"socket.io-client": "^1.7.2"
},
"scripts": {
"start": "NODE_PATH=./src react-scripts start",
"start:local": "REACT_APP_SEMPRE_SERVER=http://localhost:8410 REACT_APP_COMMUNITY_SERVER=http://localhost:8403 NODE_PATH=./src react-scripts start",
"build": "NODE_PATH=./src react-scripts build",
"build:local": "REACT_APP_SEMPRE_SERVER=http://localhost:8410 REACT_APP_COMMUNITY_SERVER=http://localhost:8403 NODE_PATH=./src react-scripts build",
"test": "NODE_PATH=./src react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"deploy": "gh-pages --dist build --repo [email protected]:sidaw/voxelurn.git --remove static",
"deploy:local": "gh-pages --dist build --repo http://www.github.com/sidaw/voxelurn-local --remove static",
"deploy:clean": "rm -rf node_modules/gh-pages/.cache"
},
"eslintConfig": {
"extends": "react-app"
}
}