forked from leancloud/ticket
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.37 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.37 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
{
"name": "leanticket",
"version": "1.4.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node server.js",
"build": "webpack",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"dev:client": "eval $(lean env) && NODE_ENV=development webpack-dev-server --port 8080 --inline --content-base public --history-api-fallback",
"dev": "WEBPACK_DEV_SERVER=http://localhost:8080 nodemon --ignore modules server.js",
"postinstall": "npm run build",
"migrate": "eval $(lean env) && migrate up --store=./migration-store"
},
"repository": {
"type": "git",
"url": "git://github.com/leancloud/ticket.git"
},
"license": "MIT",
"author": "LeanCloud",
"engines": {
"node": "8.x"
},
"dependencies": {
"anchorate": "^1.1.0",
"babel-core": "^6.26.3",
"babel-loader": "^6.2.2",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.23.0",
"bluebird": "^3.4.7",
"bootstrap": "^3.3.7",
"chart.js": "^2.7.2",
"color": "^1.0.3",
"compression": "^1.6.2",
"css-loader": "^0.28.4",
"docsearch.js": "^2.5.2",
"express": "^4.14.0",
"extract-text-webpack-plugin": "^1.0.1",
"highlight.js": "^9.10.0",
"leancloud-storage": "^3.10.0",
"leanengine": "^3.2.0",
"lodash": "^4.17.10",
"mailgun-js": "^0.18.0",
"moment": "^2.17.1",
"qs": "^6.3.1",
"query-string": "^4.3.4",
"randomcolor": "^0.5.3",
"randomstring": "^1.1.5",
"raven": "^2.2.1",
"raven-js": "^3.20.1",
"react": "^15.4.2",
"react-bootstrap": "^0.32.1",
"react-chartjs-2": "^2.1.0",
"react-datepicker": "^0.46.0",
"react-document-title": "^2.0.3",
"react-dom": "^15.4.2",
"react-notification-system": "^0.2.14",
"react-router": "^3.0.2",
"remarkable": "leeyeh/remarkable",
"request": "^2.87.0",
"request-promise": "^4.1.1",
"serve-favicon": "^2.4.3",
"stackedit-js": "^1.0.5",
"style-loader": "^0.18.1",
"webpack": "^1.12.13",
"wechat-enterprise": "^0.1.1",
"xss": "^0.3.3",
"zulip-js": "^2.0.4"
},
"devDependencies": {
"conventional-changelog-cli": "^2.0.0",
"eslint": "^3.15.0",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-react": "^6.10.0",
"http-server": "^0.10.0",
"migrate": "^1.5.0",
"nodemon": "^1.17.5",
"supertest": "^3.0.0",
"webpack-dev-server": "^1.14.1"
}
}