-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.67 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
53
54
55
56
57
{
"name": "spa-on-ghpage",
"version": "0.0.1",
"description": "spa-on-ghpage",
"private": true,
"engineStrict": true,
"engines": {
"node": "6.9.4",
"npm": ">= 3"
},
"scripts": {
"lint": "eslint ./src",
"test": "echo \"Error: no test specified\" && exit 1",
"start": "npm run clean && webpack-dev-server --progress --colors",
"build": "npm run clean && webpack --progress --colors",
"watch": "npm run build -- --watch",
"deploy": "NODE_ENV=production npm run build && gh-pages -d public",
"clean": "cd public && ls | grep -v 'index.html' | xargs rm -rf"
},
"repository": {
"type": "git",
"url": "[email protected]:necojackarc/spa-on-ghpage.git"
},
"author": "necojackarc",
"license": "MIT",
"bugs": {
"url": "https://github.com/necojackarc/spa-on-ghpage/issues"
},
"homepage": "https://github.com/necojackarc/spa-on-ghpage#readme",
"devDependencies": {
"babel-core": "^6.21.0",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.2.10",
"babel-plugin-transform-class-properties": "^6.19.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"eslint": "^3.12.2",
"eslint-config-airbnb": "^13.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.8.0",
"gh-pages": "^0.12.0",
"redux-logger": "^2.7.4",
"uglify-js": "^2.7.5",
"webpack": "^1.14.0",
"webpack-dev-server": "^1.16.2"
},
"dependencies": {
"material-ui": "^0.16.6",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"react-redux": "^5.0.1",
"react-router": "^3.0.0",
"react-tap-event-plugin": "^2.0.1",
"redux": "^3.6.0"
}
}