forked from netless-io/flat-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.54 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
{
"name": "flat-server",
"version": "1.0.0",
"main": "dist/index.js",
"license": "MIT",
"scripts": {
"start": "cross-env NODE_ENV=development webpack --watch --progress --config webpack/webpack.dev.js",
"build": "cross-env NODE_ENV=production webpack --progress --config webpack/webpack.prod.js",
"test": "cross-env NODE_ENV=test webpack --progress --config webpack/webpack.test.js && nyc --reporter=html --reporter=text mocha ./dist-test/index.js",
"lint": "lint-staged"
},
"devDependencies": {
"@babel/core": "^7.12.9",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-proposal-decorators": "^7.12.1",
"@babel/plugin-transform-runtime": "^7.12.1",
"@babel/preset-env": "^7.12.7",
"@babel/preset-typescript": "^7.12.7",
"@commitlint/cli": "^12.1.1",
"@commitlint/config-angular": "^12.1.1",
"@netless/eslint-plugin": "^1.1.1",
"@types/ali-oss": "^6.0.7",
"@types/chai": "^4.2.15",
"@types/ioredis": "^4.17.8",
"@types/jsonwebtoken": "^8.5.0",
"@types/mocha": "^8.2.1",
"@types/node": "^14.14.10",
"@types/query-string": "^6.3.0",
"@types/uuid": "^8.3.0",
"@types/validator": "^13.1.1",
"@types/webpack-env": "^1.16.0",
"@typescript-eslint/eslint-plugin": "^4.9.0",
"@typescript-eslint/parser": "^4.9.0",
"babel-loader": "^8.2.2",
"babel-plugin-transform-typescript-metadata": "^0.3.1",
"chai": "^4.3.4",
"clean-webpack-plugin": "^3.0.0",
"cross-env": "^7.0.2",
"dotenv-flow-webpack": "^1.1.0",
"eslint": "^7.14.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-webpack-plugin": "^2.4.1",
"fork-ts-checker-webpack-plugin": "^6.0.4",
"husky": ">=4",
"lint-staged": ">=10",
"mocha": "^8.3.2",
"nyc": "^15.1.0",
"prettier": "^2.2.1",
"query-string": "^6.14.1",
"typescript": "^4.1.2",
"webpack": "^5.9.0",
"webpack-cli": "^4.2.0",
"webpack-merge": "^5.4.0",
"webpack-node-externals": "^2.5.2"
},
"dependencies": {
"@babel/runtime": "^7.12.5",
"agora-access-token": "^2.0.4",
"ajv": "^7.0.0-rc.5",
"ali-oss": "^6.14.0",
"axios": "^0.21.1",
"crypto-random-string": "^3.3.0",
"date-fns": "^2.16.1",
"fastify": "^3.9.1",
"fastify-cors": "^5.1.0",
"fastify-jwt": "^2.1.3",
"ioredis": "^4.19.2",
"mysql2": "^2.2.5",
"reflect-metadata": "^0.1.13",
"retry-axios": "^2.4.0",
"typeorm": "^0.2.29",
"uuid": "^8.3.1",
"winston": "^3.3.3"
}
}