-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
46 lines (46 loc) · 1.32 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
{
"name": "crosstoria-engine",
"version": "0.0.1",
"main": "dist/index.js",
"repository": "https://github.com/Team-StarGarden/crosstoria-engine.git",
"private": true,
"scripts": {
"build": "yarn tsc -p tsconfig.json",
"lint": "yarn eslint \"src/**/*\"",
"lint-fix": "yarn lint --fix",
"prestart": "yarn build",
"start": "yarn start:prod",
"start:dev": "yarn nodemon --watch src --ext \"ts tsx\" --delay 100ms --exec \"ts-node src/index.ts\"",
"start:prod": "yarn node .",
"test": "yarn jest"
},
"dependencies": {
"class-validator": "^0.11.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-session": "^1.17.0",
"mariadb": "^2.1.4",
"mysql": "^2.17.1",
"typeorm": "^0.2.22",
"typescript": "^3.7.4"
},
"devDependencies": {
"@types/cors": "^2.8.6",
"@types/express": "^4.17.2",
"@types/express-session": "^1.17.0",
"@types/jest": "^24.9.1",
"@types/node": "^12.12.22",
"@types/supertest": "^2.0.8",
"@typescript-eslint/eslint-plugin": "^2.14.0",
"@typescript-eslint/parser": "^2.14.0",
"eslint": "^6.8.0",
"eslint-plugin-jest": "^23.2.0",
"jest": "^24.9.0",
"nodemon": "^2.0.2",
"reflect-metadata": "^0.1.13",
"supertest": "^4.0.2",
"ts-jest": "^24.2.0",
"ts-node": "^8.5.4"
}
}