-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.2 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
{
"name": "preact-unistore-test",
"version": "0.0.1",
"description": "Take THAT big bundles!",
"main": "src/index.jsx",
"scripts": {
"test": "npm run fmt",
"fmt": "node_modules/.bin/prettier --write './**/*'",
"start": "webpack-dev-server --config config/webpack-dev.js --open",
"build": "webpack --config config/webpack-prod.js",
"start-prod": "npm run build; http-server ./dist -g -o"
},
"keywords": [],
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/plugin-transform-react-jsx": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"babel-loader": "^8.0.0",
"clean-webpack-plugin": "^0.1.19",
"compression-webpack-plugin": "^1.1.12",
"css-loader": "^1.0.0",
"html-webpack-plugin": "^3.2.0",
"http-server": "^0.11.1",
"mini-css-extract-plugin": "^0.4.2",
"optimize-css-assets-webpack-plugin": "^5.0.1",
"preact": "^8.3.1",
"prettier": "^1.14.2",
"unfetch": "^3.1.1",
"unistore": "^3.0.6",
"webpack": "^4.17.1",
"webpack-bundle-analyzer": "^2.13.1",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.6"
},
"author": "Max Nachlinger",
"license": "ISC"
}