-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.79 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.79 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "ts-web-app-starter",
"version": "0.0.1",
"description": "A bare bones typescript web app starter",
"scripts": {
"build": "webpack --mode 'production'",
"build.start": "npm run build && npm run start.prod",
"rm.cache.hs": "rimraf ./node_modules/.cache/hard-source",
"start": "webpack-dashboard -- webpack-dev-server --mode 'development'",
"start.dev": "npm run start",
"start.prod": "http-server ./dist -g",
"test": "jest",
"test.w": "jest --watch",
"test.wa": "jest --watchAll",
"type-check": "tsc",
"type-check.w": "tsc -w"
},
"repository": {
"type": "git",
"url": ""
},
"author": "",
"license": "",
"bugs": {
"url": ""
},
"homepage": "",
"devDependencies": {
"@babel/core": "^7.0.0-beta.42",
"@babel/plugin-proposal-class-properties": "^7.0.0-beta.42",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0-beta.42",
"@babel/preset-env": "^7.0.0-beta.42",
"@babel/preset-typescript": "^7.0.0-beta.42",
"@types/jest": "^22.2.0",
"@types/webpack-env": "^1.13.5",
"babel-loader": "^8.0.0-beta.2",
"css-loader": "^0.28.10",
"hard-source-webpack-plugin": "^0.6.4",
"http-server": "^0.11.1",
"husky": "^0.15.0-rc.8",
"jest": "^22.4.2",
"lint-staged": "^7.0.0",
"postcss-loader": "^2.1.1",
"postcss-preset-env": "^3.4.0",
"rimraf": "^2.6.2",
"style-loader": "^0.20.2",
"stylelint": "^9.1.3",
"stylelint-config-standard": "^18.2.0",
"ts-jest": "^22.4.1",
"ts-loader": "^4.0.0-beta.0",
"tslint": "^5.9.1",
"tslint-config-prettier": "^1.10.0",
"tslint-loader": "^3.6.0",
"typescript": "^2.7.2",
"webpack": "^4.1.1",
"webpack-cli": "^2.0.6",
"webpack-dashboard": "^1.1.1",
"webpack-dev-server": "^3.1.1"
},
"dependencies": {}
}