-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
71 lines (71 loc) · 2.08 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
{
"name": "uskin.doc",
"version": "1.0.0",
"description": "USkin document.",
"main": "index.js",
"scripts": {
"dev": "rm -rf static/* && cd build && webpack-dev-server --config dev.webpack.config.js",
"build": "rm -rf static/* && cd build && webpack",
"eslint": "eslint *.js pages/ components/ --ext .js,.jsx --cache",
"init-deploy": "rm -rf static/ && mkdir static && ./scripts/init-deploy.sh",
"deploy": "./scripts/deploy.sh"
},
"pre-commit": [
"eslint"
],
"repository": {
"type": "git",
"url": "git+https://github.com/unitedstack/uskin.doc.git"
},
"keywords": [
"uskin",
"document"
],
"author": "TFcloud UED.",
"license": "MIT",
"bugs": {
"url": "https://github.com/unitedstack/uskin.doc/issues"
},
"homepage": "https://github.com/unitedstack/uskin.doc#readme",
"devDependencies": {
"autoprefixer": "^8.5.2",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.3",
"babel-loader": "^7.1.4",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"css-loader": "^0.28.11",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-babel": "^5.1.0",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.8.2",
"file-loader": "^1.1.11",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"less": "^3.0.4",
"less-loader": "^4.1.0",
"less-var-parse": "^1.1.0",
"markdown-loader": "^3.0.0",
"mini-css-extract-plugin": "^0.4.0",
"postcss-loader": "^2.1.5",
"pre-commit": "^1.2.2",
"uglifyjs-webpack-plugin": "^1.2.5",
"url-loader": "^1.0.1",
"webpack": "^4.10.2",
"webpack-bundle-analyzer": "^2.13.1",
"webpack-cli": "^2.1.4",
"webpack-dev-server": "^3.1.4",
"write-file-webpack-plugin": "^4.3.2"
},
"dependencies": {
"babel-polyfill": "^6.26.0",
"babel-runtime": "^6.26.0",
"react": "^15.6.2",
"react-dom": "^15.6.2",
"react-router-dom": "^4.2.2"
}
}