-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
55 lines (55 loc) · 1.63 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
{
"name": "root",
"private": true,
"scripts": {
"dev": "lerna run dev --parallel --stream",
"dev:trace-page": "lerna run --scope @dazejs/trace-page dev",
"install": "lerna bootstrap",
"build": "sh scripts/build.sh",
"publish": "npm run build && lerna publish",
"next": "npm run build && lerna publish --dist-tag next",
"bootstrap": "lerna bootstrap",
"test": "lerna run test --stream",
"test:coverage": "lerna run test:coverage --stream",
"benchmarks": "ts-node tools/benchmarks/benchmarks.ts",
"commitlint": "commitlint -e $GIT_PARAMS"
},
"devDependencies": {
"@commitlint/cli": "8.3.5",
"@commitlint/config-conventional": "8.2.0",
"@types/debug": "4.1.5",
"@types/express": "4.17.1",
"@types/jest": "25.1.4",
"@types/koa": "2.11.2",
"@types/koa-router": "7.4.0",
"@types/node": "14.0.26",
"@types/supertest": "2.0.8",
"@types/type-is": "1.6.3",
"@types/uuid": "7.0.2",
"@types/validator": "12.0.1",
"@typescript-eslint/eslint-plugin": "5.46.0",
"@typescript-eslint/parser": "5.46.0",
"autocannon": "4.6.0",
"copyfiles": "2.2.0",
"cross-env": "6.0.0",
"eslint": "8.29.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-plugin-import": "2.26.0",
"express": "4.17.1",
"filesize": "6.1.0",
"husky": "4.2.5",
"jest": "29.3.1",
"koa": "2.11.0",
"koa-router": "8.0.8",
"lerna": "6.4.0",
"markdown-table": "2.0.0",
"rimraf": "3.0.2",
"supertest": "4.0.2",
"ts-jest": "29.0.3",
"ts-node": "10.9.1",
"typescript": "4.9.4"
},
"dependencies": {
"reflect-metadata": "0.1.13"
}
}