-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.98 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.98 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
{
"name": "react_from_scratch",
"version": "1.0.0",
"description": "React/Preact + TS (and loads more) boilerplate",
"main": "src/main.tsx",
"repository": "git@github.com:nitishdayal/react_from_scratch.git",
"author": "Nitish Dayal <nitishdayal@outlook.com>",
"license": "MIT",
"scripts": {
"dev": "webpack-dashboard -- webpack-dev-server --config config/webpack/webpack.dev.js",
"predist": "rimraf dist",
"dist": "webpack --config config/webpack/webpack.prod.js",
"start": "webpack-dev-server --config config/webpack/webpack.prod.js",
"dev:preact": "webpack-dashboard -- webpack-dev-server --config config/webpack/webpack.preact.js",
"predist:preact": "rimraf dist",
"dist:preact": "webpack --config config/webpack/webpack.preact.prod.js",
"start:preact": "webpack-dev-server --config config/webpack/webpack.preact.prod.js"
},
"dependencies": {
"mobx": "^3.1.9",
"mobx-react": "^4.1.8",
"polished": "^1.1.2",
"preact": "^8.1.0",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"react-router-dom": "^4.1.1",
"styled-components": "^1.4.6"
},
"devDependencies": {
"@types/node": "^7.0.18",
"@types/react": "^15.0.24",
"@types/react-dom": "^15.5.0",
"@types/react-router-dom": "^4.0.4",
"@types/webpack-env": "^1.13.0",
"chunk-manifest-webpack-plugin": "^1.1.0",
"compression-webpack-plugin": "^0.4.0",
"gzip-loader": "0.0.1",
"html-webpack-plugin": "^2.28.0",
"lite-server": "^2.3.0",
"mobx-react-devtools": "^4.2.13",
"preact-compat": "^3.16.0",
"react-hot-loader": "^3.0.0-beta.7",
"rimraf": "^2.6.1",
"source-map-loader": "^0.2.1",
"ts-loader": "^2.0.3",
"tslint": "^5.2.0",
"tslint-react": "^3.0.0",
"typescript": "^2.3.2",
"uglify-js": "^2.8.29",
"uglifyjs-webpack-plugin": "^0.4.3",
"webpack": "^2.5.1",
"webpack-chunk-hash": "^0.4.0",
"webpack-dashboard": "^0.4.0",
"webpack-dev-server": "^2.4.5",
"webpack-merge": "^4.1.0"
}
}