-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.45 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
{
"name": "signus-server",
"version": "1.0.0",
"description": "Ser",
"main": "index.js",
"scripts": {
"dev": "ts-node-dev --respawn --transpileOnly src/index.ts",
"test": "mocha --require @babel/register --require ts-node/register ./src/**/*.ts"
},
"keywords": [],
"license": "MIT",
"dependencies": {
"axios": "^1.7.7",
"body-parser": "^1.20.3",
"chai": "^4.2.0",
"express": "^4.21.2",
"express-session": "^1.18.1",
"mongoose": "^8.8.3",
"ws": "^7.5.10"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/register": "^7.9.0",
"@types/axios": "^0.14.0",
"@types/chai": "^4.2.11",
"@types/expect": "^24.3.0",
"@types/express": "^4.17.6",
"@types/mocha": "^7.0.2",
"@types/mongoose": "^5.7.12",
"@types/node": "^13.7.1",
"@types/ws": "^7.2.4",
"@typescript-eslint/eslint-plugin": "^2.20.0",
"@typescript-eslint/parser": "^2.20.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-typescript": "^7.0.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.18.3",
"eslint-plugin-react-hooks": "^1.7.0",
"husky": "^4.3.8",
"mocha": "^10.2.0",
"prettier": "^1.19.1",
"pretty-quick": "^2.0.1",
"ts-node": "^8.6.2",
"ts-node-dev": "^1.1.8",
"typescript": "^3.7.5"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}