This repository was archived by the owner on Mar 1, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
121 lines (121 loc) · 3.71 KB
/
package.json
File metadata and controls
121 lines (121 loc) · 3.71 KB
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "ashe",
"version": "0.0.1",
"description": "Public cloud official website",
"main": "index.js",
"scripts": {
"start": "pm2 start pm2.json",
"client_build": "cd client/build && grunt build",
"client_dev": "cd client/build && grunt watch",
"admin_build": "cd admin && rm -rf dist/ && mkdir dist && cp -R uskin/dist/css dist/uskin && node build.js --production",
"admin_dev": "cd admin && rm -rf dist/*.* dist/dll manifest.json && node build.js --development",
"build": "npm run client_build && npm run admin_build",
"release": "npm run client_build && npm run admin_build",
"iconfont": "cd client/build && grunt font",
"palette": "cd client/build && grunt palette",
"merge_assets": "cd client/build && grunt copy_assets",
"html": "cd client/build && grunt html",
"eslint": "eslint *.js server/**/ scripts/ client/**/ admin/**/ --ext .js,.jsx --cache",
"add_eslint": "cd scripts && node checkPreCommit.js",
"prepare": "cd scripts && node checkPreCommit.js",
"preinstall": "cd scripts && node checkNodeVersion.js && cd ../admin/uskin && npm install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/unitedstack/Ashe.git"
},
"keywords": [
"official",
"website"
],
"authors": [
"PengJiyuan <731401082@qq.com>"
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/unitedstack/Ashe/issues"
},
"homepage": "https://github.com/unitedstack/Ashe#readme",
"devDependencies": {
"autoprefixer": "^7.1.5",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.1",
"babel-loader": "^7.1.2",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.0",
"babel-preset-react": "^6.24.1",
"colors": "^1.1.2",
"compression-webpack-plugin": "^1.0.1",
"css-loader": "^0.28.7",
"ejs": "^2.5.7",
"eslint": "^4.8.0",
"eslint-plugin-babel": "^4.1.2",
"eslint-plugin-react": "^7.4.0",
"extract-text-webpack-plugin": "^3.0.1",
"file-loader": "^1.1.6",
"glob": "^7.1.2",
"grunt": "^1.0.1",
"grunt-banner": "^0.6.0",
"grunt-contrib-clean": "^1.1.0",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-less": "^1.4.1",
"grunt-contrib-watch": "^1.0.0",
"grunt-rev": "^0.1.0",
"grunt-webfont": "^1.6.0",
"grunt-webpack": "^3.0.2",
"less": "^2.7.2",
"less-loader": "^4.0.5",
"less-plugin-autoprefix": "^1.5.1",
"less-var-parse": "^1.0.1",
"load-grunt-tasks": "^3.5.2",
"postcss-loader": "^2.0.6",
"time-grunt": "^1.4.0",
"uglifyjs-webpack-plugin": "^0.4.6",
"url-loader": "^0.6.2",
"webpack": "^3.9.1"
},
"dependencies": {
"babel-polyfill": "^6.26.0",
"babel-runtime": "^6.26.0",
"bcrypt": "^1.0.3",
"boom": "^6.0.0",
"ccap": "^0.6.10",
"clipboard-plus": "^1.1.0",
"co": "^4.6.0",
"connect-memjs": "^0.2.1",
"fs-async-await": "0.0.3",
"koa": "^2.3.0",
"koa-bodyparser": "^4.2.0",
"koa-conditional-get": "^2.0.0",
"koa-etag": "^3.0.0",
"koa-json": "^2.0.2",
"koa-log4": "^2.2.1",
"koa-mount": "^3.0.0",
"koa-multer": "^1.0.2",
"koa-onerror": "^3.1.0",
"koa-router": "^7.2.1",
"koa-send": "^4.1.1",
"koa-session-minimal": "^3.0.4",
"koa-static": "^4.0.1",
"koa-validate": "^1.0.7",
"koa-views": "^6.1.1",
"lodash": "^4.17.4",
"memjs": "^0.10.2",
"mysql": "^2.15.0",
"nodemailer": "^4.4.0",
"normalize.css": "^7.0.0",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"rsvp": "^4.7.0",
"sequelize": "^3.30.4",
"simditor": "^2.3.6",
"superagent": "^3.6.3",
"urlencode": "^1.1.0",
"uuid": "^3.1.0",
"wangeditor": "^2.1.22"
},
"engineStrict": true,
"engines": {
"node": ">=8"
}
}