-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.38 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.38 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
{
"name": "mappapi",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"scripts": {
"clean": "rimraf dist/*",
"copy-assets": "ts-node tools/copyAssets",
"lint": "tslint -c tslint.json -p tsconfig.json --fix",
"tsc": "tsc",
"build": "npm-run-all clean lint tsc copy-assets",
"dev:start": "npm-run-all build start",
"dev": "nodemon --watch src -e ts,ejs --exec npm run dev:start",
"start": "node .",
"test": "echo \"Error: no test specified\" && exit 1",
"initdb": "ts-node tools/initdb"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@types/body-parser": "^1.17.1",
"@types/cors": "^2.8.6",
"@types/helmet": "0.0.45",
"@types/jsonwebtoken": "^8.3.5",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"ejs": "^2.7.4",
"express": "^4.17.1",
"express-session": "^1.17.0",
"helmet": "^3.21.2",
"jsonwebtoken": "^8.5.1",
"pg-promise": "^10.3.1"
},
"devDependencies": {
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.2",
"@types/express-session": "^1.15.16",
"@types/fs-extra": "^8.0.1",
"@types/node": "^12.12.11",
"@types/shelljs": "^0.8.6",
"fs-extra": "^8.1.0",
"nodemon": "^2.0.1",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.0",
"shelljs": "^0.8.3",
"ts-node": "^8.5.2",
"tslint": "^5.20.1",
"typescript": "^3.7.2"
}
}