This repository has been archived by the owner on Mar 1, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
100 lines (100 loc) · 3.19 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "garen",
"version": "1.0.0",
"description": "UDS platform.",
"main": "index.js",
"scripts": {
"dll": "cd client && rm -rf dist/dll && webpack --config dll.config.js --env.production",
"dev": "node ./scripts/client_i18n_build.js && cd client && grunt dev",
"build": "./scripts/client_build.sh",
"transpile": "node ./scripts/client_i18n_build.js",
"add_eslint": "cd scripts && node checkPreCommit.js",
"eslint": "eslint *.js app/**/ configs/ scripts/ client/**/ tests/__tests__/ --ext .js,.jsx --cache && cd client && grunt jsonlint",
"merge_assets": "cd client && grunt merge_assets",
"prepare": "cd scripts && node checkPreCommit.js",
"dev:server": "egg-bin dev",
"start:local": "EGG_SERVER_ENV=local egg-bin dev",
"start:test": "EGG_SERVER_ENV=unittest egg-bin dev",
"start": "egg-scripts start --daemon",
"restart": "npm stop && npm start",
"stop": "egg-scripts stop"
},
"repository": {
"type": "git",
"url": "git+https://github.com/unitedstack/garen.git"
},
"author": "",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/unitedstack/garen/issues"
},
"homepage": "https://github.com/unitedstack/garen#readme",
"dependencies": {
"antd": "^3.2.1",
"babel-polyfill": "^6.26.0",
"babel-runtime": "^6.3.19",
"clipboard-plus": "^1.0.0",
"echarts": "^3.3.2",
"egg": "^2.4.0",
"egg-i18n": "^2.0.0",
"egg-onerror": "^2.0.0",
"egg-scripts": "^2.5.1",
"egg-sequelize": "^3.1.2",
"egg-session": "^3.1.0",
"egg-static": "^2.1.0",
"egg-view-ejs": "^2.0.0",
"ejs": "^2.5.7",
"eventemitter2": "^1.0.0",
"glob": "^6.0.1",
"joi": "^13.1.2",
"koa-404-handler": "0.0.2",
"koa-better-error-handler": "^1.3.5",
"less-vars-to-js": "^1.2.1",
"lodash": "^4.17.5",
"memjs": "^1.1.0",
"mysql2": "^1.5.2",
"react": "^16.3.0-alpha.1",
"react-dom": "^16.3.0-alpha.1",
"react-router-dom": "^4.2.2",
"react-transition-group": "^2.2.1",
"rsvp": "^3.1.0"
},
"devDependencies": {
"autoprefixer": "^7.1.5",
"babel-core": "^6.1.12",
"babel-eslint": "^8.0.1",
"babel-loader": "^7.1.2",
"babel-plugin-import": "^1.6.5",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"css-loader": "^0.28.7",
"cssnano": "^3.4.0",
"egg-bin": "^4.3.7",
"eslint": "^4.8.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-babel": "^4.1.2",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.5.1",
"extract-text-webpack-plugin": "^3.0.1",
"grunt": "^1.0.1",
"grunt-banner": "^0.6.0",
"grunt-cli": "^1.2.0",
"grunt-contrib-clean": "^1.0.0",
"grunt-contrib-copy": "^1.0.0",
"grunt-cssnano-plus": "^1.0.0",
"grunt-jsonlint": "^1.1.0",
"grunt-webpack": "^2.0.1",
"less": "^2.7.2",
"less-loader": "^4.0.5",
"load-grunt-tasks": "^3.3.0",
"mocha": "^5.0.1",
"postcss-loader": "^1.3.2",
"time-grunt": "^1.2.2",
"uglifyjs-webpack-plugin": "^1.1.6",
"webpack": "^3.9.1",
"webpack-dev-server": "^2.11.1"
}
}