This repository was archived by the owner on Apr 9, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.35 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.35 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
{
"name": "multi-build-starter",
"version": "1.0.0",
"description": "example of multi build",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server --env.build=dev",
"start:legacy": "webpack-dev-server --env.build=dev --env.legacy=true",
"build": "webpack --env.build=prod",
"build:legacy": "webpack --env.build=prod --env.legacy=true",
"build:multi": "webpack --env.build=multi"
},
"repository": {
"type": "git",
"url": ""
},
"keywords": [
"wp4",
"multi-build",
"starter-kit",
"module",
"nomodule"
],
"devDependencies": {
"@types/react": "^16.4.6",
"@types/react-dom": "^16.0.6",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.4",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"clean-webpack-plugin": "^0.1.19",
"css-loader": "^0.28.11",
"file-loader": "^1.1.11",
"fork-ts-checker-webpack-plugin": "^0.4.2",
"html-webpack-plugin": "^3.2.0",
"html-webpack-multi-build-plugin": "firsttris/html-webpack-multi-build-plugin#master",
"react": "^16.4.1",
"react-dom": "^16.4.1",
"react-hot-loader": "^4.3.3",
"ts-loader": "^4.4.2",
"typescript": "^2.9.2",
"webpack": "^4.15.0",
"webpack-cli": "^3.0.8",
"webpack-dev-server": "^3.1.4",
"webpack-merge": "^4.1.3"
},
"author": "tristan teufel",
"license": "MIT"
}