forked from alexmingoia/pux-starter-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.56 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
45
46
47
48
49
50
51
{
"name": "pux-starter-app",
"version": "6.0.0",
"description": "Starter Pux application using webpack with hot-reloading.",
"main": "support/index.js",
"keywords": [
"pux",
"purescript-pux",
"boilerplate",
"starter-app"
],
"scripts": {
"postinstall": "./node_modules/.bin/bower cache clean && ./node_modules/.bin/bower install",
"clean": "rimraf dist && rimraf output",
"build": "npm run clean && set NODE_ENV=production && ./node_modules/.bin/webpack --config ./webpack.production.config.js --progress --profile --colors",
"serve:watch": "node ./webpack.config.js",
"serve:prod": "http-server dist --cors -p 3000",
"start": "npm run serve: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": "BSD3",
"bugs": {
"url": "https://github.com/alexmingoia/pux-starter-app/issues"
},
"dependencies": {
"react": "^15.0.0",
"react-dom": "^15.0.0",
"purescript": "^0.8.4"
},
"devDependencies": {
"bower": "^1.7.9",
"copy-webpack-plugin": "^2.1.1",
"express": "^4.13.4",
"html-webpack-plugin": "^2.15.0",
"http-server": "^0.9.0",
"purescript-psa": "^0.3.5",
"purescript-webpack-plugin": "^0.3.0",
"purs-loader": "^0.6.0",
"rimraf": "^2.5.2",
"source-map-loader": "^0.1.5",
"webpack": "^1.12.14",
"webpack-dev-middleware": "^1.6.1",
"webpack-hot-middleware": "^2.10.0",
"webpack-strip": "^0.1.0"
}
}