forked from netless-io/flat-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.68 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
{
"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:sycn:orm": "ts-node -r dotenv-flow/config scripts/sync-orm.ts -- --default-node-env=test --dotenv-flow-path=config",
"test:local": "./scripts/prepare-test-env.sh && yarn run test:sycn:orm && yarn run test",
"test": "nyc --reporter=html ava",
"lint": "lint-staged"
},
"devDependencies": {
"@commitlint/cli": "^12.1.1",
"@commitlint/config-angular": "^12.1.1",
"@netless/eslint-plugin": "^1.1.1",
"@types/ali-oss": "^6.0.7",
"@types/dotenv-flow": "^3.1.1",
"@types/fs-extra": "^9.0.11",
"@types/ioredis": "^4.17.8",
"@types/jsonwebtoken": "^8.5.0",
"@types/lodash": "^4.14.170",
"@types/node": "^14.14.10",
"@types/node-rsa": "^1.1.1",
"@types/query-string": "^6.3.0",
"@types/sinon": "^10.0.2",
"@types/source-map-support": "^0.5.3",
"@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",
"ava": "^3.15.0",
"clean-webpack-plugin": "^3.0.0",
"cross-env": "^7.0.2",
"dotenv-flow": "^3.2.0",
"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",
"nyc": "^15.1.0",
"prettier": "^2.2.1",
"query-string": "^6.14.1",
"sinon": "^11.1.1",
"ts-loader": "^9.2.6",
"ts-node": "^10.2.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": {
"agora-access-token": "^2.0.4",
"ajv": "^7.0.0-rc.5",
"ali-oss": "^6.14.0",
"axios": "^0.21.2",
"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",
"filenamify": "^4.3.0",
"fs-extra": "^10.0.0",
"ioredis": "^4.19.2",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.21",
"mysql2": "^2.2.5",
"nanoid": "^3.1.28",
"node-rsa": "^1.1.1",
"prom-client": "^14.0.0",
"reflect-metadata": "^0.1.13",
"retry-axios": "^2.4.0",
"source-map-support": "^0.5.19",
"typeorm": "^0.2.29",
"uuid": "^8.3.1"
}
}