-
Notifications
You must be signed in to change notification settings - Fork 63
/
package.json
122 lines (122 loc) · 3.55 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"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 serve",
"dev:in-app:v1": "cd in-app/v1 && npm run dev",
"dev": "WEBPACK_DEV_SERVER=http://localhost:8080 nodemon --ignore modules server.js",
"migrate": "eval $(lean env) && migrate up --store=./migration-store",
"fmt": "prettier -w */**/*.js",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git://github.com/leancloud/ticket.git"
},
"license": "MIT",
"author": "LeanCloud",
"engines": {
"node": "^16.0.0"
},
"dependencies": {
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@babel/preset-react": "^7.12.10",
"@leancloud/use-resource": "^1.1.0",
"@slack/web-api": "^6.0.0",
"axios": "^0.21.1",
"babel-loader": "^8.2.2",
"bluebird": "^3.4.7",
"blueimp-md5": "^2.18.0",
"bootstrap": "^4.6.0",
"chart.js": "^2.9.4",
"classnames": "^2.3.1",
"compression": "^1.6.2",
"connect-redis": "^6.0.0",
"cors": "^2.8.5",
"css-loader": "^5.0.1",
"css-minimizer-webpack-plugin": "^1.2.0",
"docsearch.js": "^2.5.2",
"dompurify": "^2.3.6",
"express": "^4.17.3",
"express-session": "^1.17.2",
"express-validator": "^6.10.0",
"form-data": "^4.0.0",
"handlebars": "^4.7.7",
"highlight.js": "^9.10.0",
"https-proxy-agent": "^7.0.1",
"i18next": "^19.8.9",
"i18next-browser-languagedetector": "^6.1.2",
"ioredis": "^4.27.7",
"leancloud-storage": "^4.14.0",
"leanengine": "^3.8.0",
"lodash": "^4.17.21",
"mailgun-js": "^0.18.0",
"mini-css-extract-plugin": "^1.3.5",
"moment": "^2.29.4",
"open-leancloud-storage": "^0.0.40",
"p-memoize": "^4.0.4",
"passport": "^0.4.1",
"passport-oauth": "^1.0.0",
"query-string": "^6.14.0",
"randomstring": "^1.1.5",
"raven": "^2.2.1",
"raven-js": "^3.20.1",
"react": "^16.14.0",
"react-beautiful-dnd": "^13.1.0",
"react-bootstrap": "^1.6.6",
"react-bootstrap-icons": "^1.10.3",
"react-chartjs-2": "^2.1.0",
"react-dom": "^16.14.0",
"react-i18next": "^11.8.7",
"react-notification-system": "^0.2.14",
"react-query": "^3.16.0",
"react-router-dom": "^5.2.0",
"react-select": "^5.7.0",
"react-use": "^17.2.4",
"remarkable": "^1.7.2",
"request": "^2.87.0",
"request-promise": "^4.1.1",
"serve-favicon": "^2.4.3",
"stackedit-js": "^1.0.5",
"swagger-ui-express": "^4.1.6",
"throat": "^6.0.1",
"valid-url": "^1.0.9",
"webpack": "^5.18.0",
"webpack-cli": "^4.4.0",
"yamljs": "^0.3.0",
"zulip-js": "^2.0.4"
},
"devDependencies": {
"autoprefixer": "^10.2.5",
"conventional-changelog-cli": "^2.0.0",
"eslint": "^7.19.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-i18n": "^2.0.0",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-react": "^7.31.10",
"eslint-plugin-react-hooks": "^4.2.0",
"http-server": "^0.10.0",
"husky": "^6.0.0",
"lint-staged": "^11.0.0",
"migrate": "^1.5.0",
"nodemon": "^1.17.5",
"postcss": "^8.2.9",
"postcss-loader": "^5.2.0",
"prettier": "^2.2.1",
"prompts": "^2.4.2",
"prop-types": "^15.7.2",
"sass": "^1.32.8",
"sass-loader": "^11.0.1",
"supertest": "^3.0.0",
"webpack-dev-server": "^3.11.2"
},
"lint-staged": {
"*.js": "prettier --write"
}
}