-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.99 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 1.99 KB
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
70
71
{
"name": "backend",
"version": "1.0.0",
"description": "",
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/cookie-parser": "^1.4.2",
"@types/express": "^4.17.1",
"@types/graphql": "^14.5.0",
"@types/jest": "^25.2.3",
"@types/jsonwebtoken": "^8.5.0",
"@types/node": "^12.7.12",
"@typescript-eslint/eslint-plugin": "^3.0.2",
"@typescript-eslint/parser": "^3.0.2",
"eslint": "^7.1.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"jest": "^26.0.1",
"nodemon": "^2.0.4",
"ts-jest": "^26.1.0",
"ts-node": "^8.4.1",
"typescript": "^3.6.4"
},
"dependencies": {
"apollo-server-express": "^2.9.6",
"bcryptjs": "^2.4.3",
"class-validator": "^0.12.2",
"cookie-parser": "^1.4.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"graphql": "^14.5.8",
"jsonwebtoken": "^8.5.1",
"moment": "^2.26.0",
"pg": "^7.12.1",
"reflect-metadata": "^0.1.13",
"typeorm": "^0.2.19"
},
"scripts": {
"start": "export NODE_ENV=dev-TypeScript&& ts-node src/index.ts",
"build": "export NODE_ENV=dev-JavaScript&& tsc && cp -a ./src/typeDefs output/typeDefs && node output/index.js",
"production": "export NODE_ENV=production&& tsc && cp -a ./src/typeDefs output/typeDefs && node output/index.js",
"start:watch": "nodemon",
"test": "export NODE_ENV=test&& jest",
"test:watch": "npm test -- --watch"
},
"nodemonConfig": {
"ignore": [
"**/*.test.ts",
".git",
"node_modules"
],
"watch": [
"src"
],
"exec": "npm start",
"ext": "ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/taioo/node-backend.git"
},
"author": "Thaer",
"license": "ISC",
"bugs": {
"url": "https://github.com/taioo/node-backend/issues"
},
"homepage": "https://github.com/taioo/node-backend#readme"
}