-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 842 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 842 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
{
"name": "starter-app-node-ts",
"version": "1.0.0",
"description": "A good way to start with a ready-to-develop node app written in Typescript",
"keywords": [
"node",
"starter",
"skeleton",
"typescript"
],
"author": "gjdass",
"repository": {
"type": "git",
"url": "https://github.com/gjdass/starter-app-node-ts.git"
},
"license": "MIT",
"main": "dist/index.js",
"dependencies": {
"config": "^3.1.0",
"cross-env": "^5.2.0",
"lodash": "^4.17.11",
"log4js": "^4.3.1",
"path": "^0.12.7"
},
"devDependencies": {
"@types/config": "0.0.34",
"nodemon": "^1.19.1",
"typescript": "^3.4.5"
},
"scripts": {
"start": "cross-env nodemon dist/index.js",
"build": "tsc",
"watch": "tsc --watch",
"test": "echo \"Error: no test specified\" && exit 1"
}
}