-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.69 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
{
"name": "sudoku-server",
"version": "1.0.0",
"description": "Sudoku server",
"main": "dist/src/server.js",
"engines": {
"node": ">=12.6.0"
},
"scripts": {
"eslint": "eslint --ext .js --ext .ts --max-warnings 0 ./src",
"prettier:fix": "prettier src/**/*.ts --write",
"lint": "npm run prettier:fix && npm run eslint",
"prebuild": "npm run eslint",
"build": "tsc",
"start": "ts-node-dev --respawn --transpileOnly src/server.ts",
"start:prod": "node dist/src/server.js",
"deploy": "npm run build && git push heroku master"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kobawan/sudoku-server.git"
},
"author": "Sara Nordmyr da Cunha",
"license": "ISC",
"dependencies": {
"argon2": "^0.28.2",
"body-parser": "^1.19.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"mongoose": "^5.12.13",
"morgan": "^1.9.1",
"tslib": "^1.11.1",
"validator": "^13.0.0"
},
"devDependencies": {
"@types/compression": "^1.0.1",
"@types/cors": "^2.8.6",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.2",
"@types/hapi__joi": "^16.0.12",
"@types/mongoose": "^5.5.41",
"@types/morgan": "^1.9.0",
"@types/validator": "^12.0.1",
"@typescript-eslint/eslint-plugin": "^2.23.0",
"@typescript-eslint/parser": "^2.23.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-import-resolver-typescript": "^2.0.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-prettier": "^3.1.2",
"prettier": "^1.19.1",
"ts-node-dev": "^1.0.0-pre.44",
"typescript": "^3.7.5"
}
}