-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
64 lines (64 loc) · 1.82 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
{
"name": "nf-backend-ts-template",
"version": "0.1.0",
"description": "backend template using typescript",
"main": "index.js",
"scripts": {
"test": "NODE_ENV=test yarn initDB && jest",
"start": "nodemon ./src/Api.ts",
"build": "webpack",
"lint": "eslint src/ __test__/",
"ts-node": "ts-node -r tsconfig-paths/register --files",
"typeorm": "yarn ts-node ./node_modules/typeorm/cli.js",
"initDB": "yarn ts-node __test__/setups/initDB",
"deploy": "pm2 deploy",
"serve": " pm2 startOrRestart ecosystem.config.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"apollo-server-express": "^2.19.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"got": "^11.8.0",
"graphql-scalars": "^1.4.1",
"jsonwebtoken": "^8.5.1",
"morgan": "^1.10.0",
"pg": "^8.5.1",
"ts-loader": "^8.0.7",
"ts-node": "^9.0.0",
"tsconfig-paths": "^3.9.0",
"typeorm": "^0.2.28",
"typescript": "^4.0.3",
"uuid": "^8.3.1",
"webpack": "^5.9.0",
"webpack-cli": "^4.1.0",
"webpack-node-externals": "^2.5.2"
},
"devDependencies": {
"@babel/core": "^7.12.9",
"@babel/preset-env": "^7.12.7",
"@types/express": "^4.17.8",
"@types/faker": "^5.1.4",
"@types/jest": "^26.0.15",
"@types/jsonwebtoken": "^8.5.0",
"@types/morgan": "^1.9.2",
"@types/node": "^14.14.3",
"@types/supertest": "^2.0.10",
"@types/test-listen": "^1.1.0",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^4.5.0",
"@typescript-eslint/parser": "^4.5.0",
"babel-jest": "^26.6.3",
"babel-loader": "^8.2.2",
"eslint": "^7.12.0",
"eslint-plugin-prettier": "^3.1.4",
"faker": "^5.1.0",
"jest": "^26.6.3",
"nodemon": "^2.0.6",
"pm2": "^4.5.0",
"prettier": "^2.1.2",
"supertest": "^6.0.1",
"ts-jest": "^26.4.2"
}
}