-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
84 lines (84 loc) · 2.35 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": "antigen",
"description": "DNN based face detection and recognition",
"private": true,
"scripts": {
"dev": "cross-env NODE_ENV=development nodemon -e ts -x 'ts-node app' -w app.ts -w app",
"start": "cross-env NODE_ENV=production ts-node app",
"serve": "parcel public/index.html --out-dir public/dist",
"generate": "parcel build public/index.html --out-dir public/dist",
"build:paper": "echo \"TODO\""
},
"dependencies": {
"axios": "0.21.1",
"bootstrap": "4.3.1",
"consola": "2.10.1",
"jquery": "3.5.0",
"koa": "2.8.1",
"koa-bodyparser": "4.2.1",
"koa-logger": "3.2.1",
"koa-mount": "4.0.0",
"koa-router": "7.4.0",
"koa-static": "5.0.0",
"mongoose": "5.7.5",
"qrcode": "1.4.1",
"ramda": "0.26.1",
"seeta": "0.2.4",
"socket.io": "2.4.0",
"uuid": "3.3.3"
},
"devDependencies": {
"@babel/core": "7.5.5",
"@babel/plugin-transform-runtime": "7.5.5",
"@babel/preset-env": "7.5.5",
"@commitlint/cli": "8.1.0",
"@commitlint/config-conventional": "8.1.0",
"@types/debug": "4.1.5",
"@types/glob": "7.1.1",
"@types/koa": "2.0.49",
"@types/koa-bodyparser": "4.3.0",
"@types/koa-logger": "3.1.1",
"@types/koa-mount": "4.0.0",
"@types/koa-router": "7.0.42",
"@types/koa-static": "4.0.1",
"@types/mongoose": "5.5.13",
"@types/node": "12.7.2",
"@types/parcel-bundler": "1.12.1",
"@types/qrcode": "1.3.4",
"@types/ramda": "0.26.21",
"@types/socket.io": "2.1.2",
"@types/uuid": "3.4.5",
"@typescript-eslint/eslint-plugin": "2.0.0",
"@typescript-eslint/parser": "2.0.0",
"autoprefixer": "9.6.1",
"cross-env": "5.2.0",
"debug": "4.1.1",
"eslint": "6.2.2",
"eslint-config-prettier": "6.1.0",
"eslint-plugin-prettier": "3.1.0",
"husky": "3.0.4",
"lint-staged": "9.2.4",
"nodemon": "1.19.0",
"parcel-bundler": "1.12.3",
"popper.js": "1.15.0",
"postcss-modules": "1.4.1",
"postcss-preset-env": "6.7.0",
"prettier": "1.18.2",
"stylus": "0.54.7",
"stylus-loader": "3.0.2",
"ts-node": "8.3.0",
"typescript": "3.5.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"packages/**/*.ts": [
"eslint --ignore-path .gitignore --fix",
"git add"
]
}
}