This repository has been archived by the owner on May 4, 2021. It is now read-only.
generated from BloomTech-Labs/template-be
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
55 lines (55 loc) · 1.75 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
{
"name": "story-squad-be",
"version": "0.0.1",
"private": true,
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"start": "node build/index.js",
"dev": "ts-node-dev src/index.ts",
"test": "jest --watch",
"typeorm": "ts-node ./node_modules/typeorm/cli.js -f src/ormconfig.ts",
"typeorm-dev": "ts-node ./node_modules/typeorm/cli.js -c development -f src/ormconfig.ts",
"connection": "ts-node src/util/get-connection.ts"
},
"dependencies": {
"@types/node": "^13.5.1",
"acorn": "^7.1.1",
"bcryptjs": "^2.4.3",
"class-transformer": "^0.2.3",
"class-transformer-validator": "^0.8.0",
"class-validator": "^0.10.1",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"helmet": "^3.21.2",
"jsonwebtoken": "^8.5.1",
"moment": "^2.24.0",
"pg": "^7.17.1",
"pg-connection-string": "^2.1.0",
"python-shell": "^1.0.8",
"reflect-metadata": "^0.1.13",
"segal-decorators": "^0.3.1",
"stripe": "^8.7.0",
"ts-node": "^8.6.2",
"typeorm": "^0.2.22"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/cors": "^2.8.6",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.2",
"@types/express-session": "^1.15.16",
"@types/helmet": "^0.0.45",
"@types/jest": "^25.1.0",
"@types/jsonwebtoken": "^8.3.7",
"@types/pg": "^7.14.1",
"@types/supertest": "^2.0.8",
"@types/webpack": "^4.41.3",
"jest": "^25.1.0",
"supertest": "^4.0.2",
"ts-jest": "^25.0.0",
"ts-node-dev": "^1.0.0-pre.44",
"typescript": "^3.7.5"
}
}