-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 2.03 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
{
"name": "s-node",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
"start": "NODE_ENV=production node ./build/index.js",
"start_nodemon": "NODE_ENV=production nodemon ./build/index.js",
"dev": "ts-node-dev --respawn --transpileOnly ./src/index.ts",
"prettier:base": "prettier --parser typescript --single-quote",
"prettier:check": "npm run prettier:base -- --list-different \"src/**/*.{ts,tsx}\"",
"prettier:write": "npm run prettier:base -- --write \"src/**/*.{ts,tsx}\"",
"tslint": "tslint --project tsconfig.json"
},
"husky": {
"hooks": {
"pre-commit": "npm run prettier:write"
}
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/body-parser": "^1.17.1",
"@types/cors": "^2.8.6",
"@types/express": "^4.17.2",
"@types/node": "^13.7.0",
"@typescript-eslint/eslint-plugin": "^2.16.0",
"@typescript-eslint/parser": "^2.16.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.9.0",
"eslint-plugin-prettier": "^3.1.2",
"husky": "^4.0.10",
"nodemon": "^2.0.2",
"prettier": "^1.19.1",
"ts-node": "^8.6.2",
"ts-node-dev": "^1.0.0-pre.44",
"tslint": "^5.20.1",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.7.5",
"typescript-eslint-parser": "^22.0.0"
},
"dependencies": {
"@types/bcrypt": "^3.0.0",
"@types/express-session": "^1.15.16",
"@types/jsonwebtoken": "^8.3.7",
"@types/passport": "^1.0.2",
"@types/pg": "^7.14.1",
"@types/uuid": "^3.4.7",
"bcrypt": "^3.0.8",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"colors": "^1.4.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-session": "^1.17.0",
"jsonwebtoken": "^8.5.1",
"make-runnable": "^1.3.6",
"moment": "^2.24.0",
"mongoose": "^5.9.10",
"morgan": "^1.10.0",
"passport": "^0.4.1",
"pg": "^7.17.1",
"slugify": "^1.4.0",
"uuid": "^3.4.0"
}
}