-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.76 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.76 KB
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": "json-server-examples",
"version": "0.0.1",
"description": "examples on how to use and configure json-server",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server --port 9000 --inline --progress --profile --colors --watch --content-base src/ --mode development",
"build": "webpack --config webpack.config.js --mode production",
"build.prod": "webpack --config webpack.config.js -p",
"build.esnext": "npm run build:types && npm run build:js",
"build:types": "tsc --emitDeclarationOnly",
"build.all": "npm run build.prod && npm run build.esnext",
"test": "echo \"Error: no test specified\" && exit 1",
"faker.generate": "node ./faker-generate/generate-data.js > ./faker-generate/data.json",
"js.simple": "json-server json-server-simple/database.json",
"js.module": "node json-server-module/server.js",
"js.cli-options": "json-server ./json-server-cli-options/generate-data.js --routes ./json-server-cli-options/routes.json --middlewares ./json-server-cli-options/middlewares-header.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/helloworld121/webpack-typscript-template.git"
},
"keywords": [
"webpack",
"typescript"
],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/helloworld121/webpack-typscript-template/issues"
},
"homepage": "https://github.com/helloworld121/webpack-typscript-template#readme",
"devDependencies": {
"@types/faker": "^4.1.12",
"faker": "^5.0.0",
"json-server": "^0.16.1",
"source-map-loader": "^1.0.2",
"ts-loader": "^8.0.2",
"tslint": "^6.1.3",
"tslint-loader": "^3.5.4",
"typescript": "^4.0.2",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
}
}