This repository has been archived by the owner on Dec 23, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
79 lines (79 loc) · 2.92 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "express-typescript-boilerplate",
"version": "2.4.1",
"description": "A boilerplate for a Node.js server with Express framework and a client app built with Webpack. Written in Typescript. Supports containerization using Docker.",
"homepage": "https://github.com/erkstruwe/express-typescript-boilerplate",
"bugs": {
"url": "https://github.com/erkstruwe/express-typescript-boilerplate/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/erkstruwe/express-typescript-boilerplate.git"
},
"main": "src/index.ts",
"engines": {
"node": "^10.0.0",
"npm": "^6.0.0"
},
"scripts": {
"start": "ts-node --project tsconfig.server.json src/index.ts",
"start:prod": "cross-env NODE_ENV=production npm start",
"start:dev": "nodemon --watch src --ignore src/app --ignore src/views --watch package.json --watch .env --ext js,json,ts --exec \"npm start\"",
"lint": "npm run lint:server && npm run lint:app",
"lint:fix": "npm run lint:server -- --fix && npm run lint:app -- --fix",
"lint:server": "tslint --project tsconfig.server.json",
"lint:app": "tslint --project tsconfig.app.json",
"build:server": "tsc --project tsconfig.server.json --noEmit",
"build:app": "webpack --hide-modules --mode=production --profile --json > webpackStats.json",
"build:app:watch": "webpack --hide-modules --mode=development --watch",
"clean": "rimraf public/generated",
"docker:build": "cross-var docker build -t $npm_package_name:$npm_package_version .",
"docker:run": "cross-var docker run $npm_package_name:$npm_package_version",
"docker:compose-up": "docker-compose up",
"postinstall": "npm run build:app",
"test": "npm run lint && npm run build:server && npm run build:app",
"preversion": "npm run lint:fix && npm test",
"version": "git add --all",
"postversion": "git push origin master"
},
"author": "Erk Struwe <[email protected]>",
"license": "SEE LICENSE IN LICENSE",
"dependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^7.1.4",
"babel-preset-env": "^1.7.0",
"bootstrap": "^4.3.1",
"compression": "^1.7.4",
"cors": "^2.8.5",
"cross-env": "^5.1.6",
"css-loader": "^1.0.1",
"dotenv": "^6.2.0",
"express": "^4.16.4",
"helmet": "^3.16.0",
"lodash": "^4.17.11",
"node-sass": "^4.11.0",
"pug": "^2.0.3",
"pug-plain-loader": "^1.0.0",
"raw-loader": "^0.5.1",
"sass-loader": "^7.0.1",
"st": "^1.2.2",
"style-loader": "^0.23.1",
"ts-loader": "^5.3.3",
"ts-node": "^7.0.1",
"typescript": "^3.4.1",
"vue": "^2.6.10",
"vue-loader": "^15.7.0",
"vue-template-compiler": "^2.6.10",
"webpack": "^4.29.6",
"webpack-cli": "^3.3.0",
"webpack-dev-middleware": "^3.6.2",
"winston": "^3.2.1"
},
"devDependencies": {
"@types/node": "^10.14.4",
"cross-var": "^1.1.0",
"nodemon": "^1.18.10",
"rimraf": "^2.6.3",
"tslint": "^5.15.0"
}
}