forked from alexmingoia/pux-starter-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.32 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
39
40
41
42
43
44
{
"name": "pux-starter-app",
"version": "11.0.0",
"description": "Pux starter app with hot-reloading and isomorphic rendering and routing.",
"main": "support/index.js",
"keywords": [
"pux",
"purescript-pux",
"boilerplate",
"starter-app"
],
"scripts": {
"postinstall": "bower cache clean && bower install",
"clean": "rimraf static/dist",
"build": "npm run clean && webpack --config ./webpack.config.js --progress --profile --colors",
"watch": "npm run clean && webpack-dev-server --content-base static/ --hot --inline --config webpack.config.js",
"serve": "npm run build && serve static",
"start": "npm run watch",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git://github.com/alexmingoia/pux-starter-app.git"
},
"author": "Alexander C. Mingoia",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/alexmingoia/pux-starter-app/issues"
},
"dependencies": {
"bower": "^1.7.9",
"preact": "^8.1.0",
"preact-compat": "^3.16.0",
"purescript": "^0.11.5",
"purescript-psa": "^0.5.1",
"purs-loader": "^3.0.0",
"rimraf": "^2.5.2",
"serve": "^5.1.5",
"webpack": "^2.3.2",
"webpack-dev-server": "^2.4.5",
"webpack-node-externals": "^1.5.4",
"xhr2": "^0.1.3"
}
}