-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1.3 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
{
"name": "maptool-services",
"version": "1.0.0",
"description": "Services for MapTool",
"main": "index.js",
"scripts": {
"start": "npm run build:live",
"build": "tsc -p .",
"build:live": "nodemon --watch 'src/**/*.ts' --exec \"ts-node\" src/index.ts"
},
"author": "RPTools Team",
"license": "GPL-3.0",
"devDependencies": {
"@types/cors": "^2.8.9",
"@types/node": "^14.14.22",
"@typescript-eslint/eslint-plugin": "^4.14.2",
"@typescript-eslint/parser": "^4.14.2",
"cors": "^2.8.5",
"cron": "^1.8.2",
"eslint": "^7.19.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-license-header": "^0.2.0",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-unicorn": "^27.0.0",
"inversify": "^5.0.5",
"nodemon": "^2.0.7",
"prettier": "^2.2.1",
"prettier-eslint": "^12.0.0",
"ts-node": "^9.1.1",
"typescript": "^4.1.3",
"winston": "^3.3.3"
},
"dependencies": {
"@types/cron": "^1.7.2",
"@types/express": "^4.17.11",
"@types/uuid": "^8.3.0",
"body-parser": "^1.19.0",
"express": "^4.17.1",
"mysql2": "^2.2.5",
"node-cron": "^2.0.3",
"reflect-metadata": "^0.1.13",
"sequelize": "^6.5.0",
"uuidv4": "^6.2.6"
}
}