-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.31 KB
/
package.json
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
{
"name": "node-typescript",
"version": "1.0.0",
"description": "The implement use node with typescript",
"main": "dist/index.js",
"scripts": {
"clean": "rimraf dist/*",
"copy-assets": "ts-node tools/copyAssets",
"tsc": "tsc",
"build": "npm-run-all clean 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"
},
"repository": {
"type": "git",
"url": "git+https://github.com/quyenly21/node-typescript.git"
},
"keywords": [
"node",
"typescript"
],
"author": "quyenly21",
"license": "ISC",
"bugs": {
"url": "https://github.com/quyenly21/node-typescript/issues"
},
"homepage": "https://github.com/quyenly21/node-typescript#readme",
"dependencies": {
"dotenv": "^8.2.0",
"ejs": "^3.0.1",
"eslint": "^6.8.0",
"express": "^4.17.1"
},
"devDependencies": {
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.2",
"@types/fs-extra": "^8.0.1",
"@types/node": "^13.1.0",
"@types/shelljs": "^0.8.6",
"fs-extra": "^8.1.0",
"nodemon": "^2.0.2",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.0",
"shelljs": "^0.8.3",
"ts-node": "^8.5.4",
"typescript": "^3.7.4"
}
}