-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "js-demo",
"version": "0.1.0",
"description": "This is a javascript practice demo",
"main": "demo.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build:dev": "webpack --progress --profile --colors",
"start":
"webpack-dev-server --env=dev --inline --progress --profile --colors",
"precommit": "lint-staged"
},
"lint-staged": {
"*.js": ["prettier --write --single-quote", "git add"]
},
"repository": {
"type": "git",
"url": "git+https://github.com/navono/JSPracticeSample.git"
},
"keywords": ["js Demo"],
"author": "Ping Qixing",
"license": "ISC",
"bugs": {
"url": "https://github.com/navono/JSPracticeSample/issues"
},
"homepage": "https://github.com/navono/JSPracticeSample#readme",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-eslint": "^7.2.3",
"babel-plugin-transform-es2015-modules-amd": "^6.24.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-es2016": "^6.24.1",
"css-loader": "^0.28.4",
"d3": "^4.9.1",
"echarts": "^3.6.2",
"eslint": "^4.2.0",
"eslint-plugin-html": "^3.2.1",
"eslint-plugin-react": "^7.1.0",
"events": "^1.1.1",
"formidable": "^1.1.1",
"gulp": "^3.9.1",
"gulp-uglify": "^3.0.0",
"html-webpack-plugin": "^2.29.0",
"husky": "^0.14.3",
"isomorphic-fetch": "^2.2.1",
"lint-staged": "^4.1.3",
"lodash": "^4.17.4",
"node-sass": "^4.5.3",
"normalizr": "^3.2.3",
"open-browser-webpack-plugin": "^0.0.5",
"postcss-loader": "^2.0.6",
"prop-types": "^15.5.10",
"ramda": "^0.24.1",
"react": "^15.6.1",
"react-addons": "^0.9.1-deprecated",
"redux": "^3.7.2",
"sass-loader": "^6.0.6",
"socket.io-client": "^2.0.3",
"style-loader": "^0.18.2",
"uuid": "^3.1.0",
"webpack": "^3.0.0",
"webpack-dev-server": "^2.5.0"
},
"dependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.25.0",
"babel-loader": "^7.0.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"requirejs": "^2.3.3",
"thunkify": "^2.1.2"
}
}