-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.38 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
{
"name": "express-browserify-example",
"version": "0.0.2",
"description": "express with browserify base project",
"main": "dist/server.js",
"scripts": {
"clean": "rimraf dist/*",
"copy-assets": "ts-node tools/copyAssets",
"copy-watch": "nodemon --watch src -e js,css,svg --exec npm run copy-assets",
"lint": "tslint -c tslint.json -p tsconfig.json --fix",
"tsc": "tsc",
"build": "npm-run-all clean lint tsc copy-assets",
"watch:dev": "nodemon --watch src -e ts,ejs --exec npm run start:dev",
"start:dev": "npm-run-all build start",
"start": "node .",
"test": "echo \"Error: no test specified\" && exit 1"
},
"git": "https://github.com/ZpeedTube/express-browserify-example",
"author": "ZpeedTube",
"license": "ISC",
"dependencies": {
"body-parser": "^1.19.0",
"cookie-parser": "^1.4.4",
"cookie-session": "^1.4.0",
"dotenv": "^8.2.0",
"ejs": "^2.7.4",
"express": "^4.17.1",
"express-browserify": "^1.0.3",
"path": "^0.12.7",
"tsify": "^4.0.1"
},
"devDependencies": {
"@types/express": "^4.17.6",
"@types/node": "^13.13.4",
"@types/shelljs": "^0.8.6",
"nodemon": "^1.19.4",
"rimraf": "^3.0.0",
"prettier": "^1.19.1",
"shelljs": "^0.8.3",
"ts-loader": "^7.0.2",
"ts-node": "^8.6.2",
"tslint": "^5.20.1",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.7.4"
}
}