forked from Luke-TE/destdonation
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.1 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.1 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
72
73
74
75
76
77
78
79
{
"name": "destdonation-backend",
"version": "0.0.0",
"scripts": {
"build": "cd client && npm install && npm run build && cd .. && node build.js",
"build:client": "cd client && npm run build",
"build:server": "node build.js",
"lint": "tslint --project \"tsconfig.json\"",
"start": "node -r module-alias/register ./dist",
"start:dev": "nodemon --config nodemon.json",
"start:client": "cd client && npm start",
"test": "jest --watch",
"test:CI": "CI=true jest"
},
"_moduleAliases": {
"@daos": "dist/daos",
"@entities": "dist/entities",
"@shared": "dist/shared",
"@server": "dist/Server"
},
"dependencies": {
"@types/react-router-dom": "^5.1.5",
"clsx": "^1.1.0",
"command-line-args": "^5.1.1",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-async-errors": "^3.1.1",
"graphile-build": "^4.7.0",
"graphql-request": "^2.0.0",
"helmet": "^3.22.0",
"http-status-codes": "^1.4.0",
"module-alias": "^2.2.2",
"morgan": "^1.10.0",
"postgraphile": "^4.7.0",
"react-router-dom": "^5.2.0",
"tslib": "^2.0.0",
"winston": "^3.2.1"
},
"devDependencies": {
"@types/command-line-args": "^5.0.0",
"@types/cookie-parser": "^1.4.2",
"@types/cors": "^2.8.6",
"@types/express": "^4.17.6",
"@types/find": "^0.2.1",
"@types/helmet": "0.0.47",
"@types/jasmine": "^3.5.10",
"@types/jest": "^25.2.3",
"@types/jsonfile": "^6.0.0",
"@types/mocha": "^7.0.2",
"@types/morgan": "^1.9.0",
"@types/node": "^14.0.5",
"@types/supertest": "^2.0.9",
"find": "^0.3.0",
"fs-extra": "^9.0.0",
"husky": "^4.2.5",
"jest": "^24.9.0",
"jsonfile": "^6.0.1",
"nodemon": "^2.0.4",
"prettier": "^2.0.5",
"pretty-quick": "^2.0.1",
"supertest": "^4.0.2",
"ts-node": "^8.10.1",
"tsconfig-paths": "^3.9.0",
"tslint": "^6.1.2",
"typescript": "^3.9.3"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"jest": {
"testMatch": [
"**/src/**/*.test.ts"
]
}
}