-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1016 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 1016 Bytes
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
{
"name": "pathways-backend",
"version": "0.0.1",
"description": "Backend Service for Camino and the Pathways Builder",
"main": "index.ts",
"repository": "https://github.com/mcode/pathway-builder",
"license": "Apache 2.0",
"private": true,
"dependencies": {
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"express": "^4.17.3",
"mongoose": "^5.10.9"
},
"devDependencies": {
"@types/cors": "^2.8.8",
"@types/express": "^4.17.8",
"@types/mongoose": "^5.7.36",
"@types/node": "^14.11.10",
"eslint": "^7.12.1",
"eslint-config-prettier": "^6.13.0",
"eslint-plugin-prettier": "^3.1.4",
"nodemon": "^2.0.5",
"prettier": "^2.1.2",
"ts-node": "^9.0.0",
"typescript": "^4.0.3"
},
"scripts": {
"start": "NODE_PATH=./src nodemon src/index.ts",
"lint": "tsc --noEmit && eslint './src/**/*.{ts,tsx}' --resolve-plugins-relative-to .",
"lint-fix": "tsc --noEmit && eslint './src/**/*.{ts,tsx}' --fix --resolve-plugins-relative-to . "
}
}