-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 815 Bytes
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 815 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
34
35
36
37
38
39
{
"name": "ts_node",
"version": "1.0.0",
"description": "test typescript in node",
"main": "index.js",
"scripts": {
"start": "tsc && node dist/app.js",
"start:watch": "nodemon",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Tyler Hogarth",
"license": "ISC",
"devDependencies": {
"@types/express": "^4.16.1",
"dotenv": "^8.2.0",
"tslint": "^5.12.1",
"typescript": "^3.3.3"
},
"dependencies": {
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"errorhandler": "^1.5.1",
"express": "^4.16.4",
"express-session": "^1.17.1"
},
"nodemonConfig": {
"ignore": [
"**/*.test.ts",
"**/*.spec.ts",
".git",
"node_modules"
],
"watch": [
"src"
],
"exec": "npm start",
"ext": "ts"
}
}