-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
33 lines (33 loc) · 1.19 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
{
"name": "purescript-webpack-example",
"version": "0.1.0",
"private": true,
"description": "Example using PureScript with webpack",
"license": "MIT",
"repository": "ethul/purescript-webpack-example",
"author": {
"name": "Eric Thul",
"email": "thul.eric@gmail.com"
},
"files": [],
"scripts": {
"webpack": "DEBUG=purs-loader* DEBUG_DEPTH=100 webpack --progress --bail",
"webpack:watch": "PATH=$PATH:../releases/psc-package DEBUG=purs-loader* DEBUG_DEPTH=100 webpack --progress --display-error-details --display verbose --watch",
"webpack:server": "webpack-dev-server --progress --inline --hot",
"webpack:server:debug": "DEBUG=purs-loader* DEBUG_DEPTH=100 webpack-dev-server --progress --inline --hot",
"purs:compile": "purs compile 'bower_components/purescript-*/src/**/*.purs' 'src/**/*.purs'",
"purs:bundle": "purs bundle output/**/*.js",
"start": "node bundle.js"
},
"dependencies": {
"lodash.difference": "^4.5.0",
"purescript": "^0.11.0",
"purescript-psa": "^0.5.0",
"purs-loader": "^3.1.1",
"react": "^15.3.2",
"react-dom": "^15.3.2",
"webpack": "^3.5.5",
"webpack-dev-server": "^2.7.1",
"wrappy": "^1.0.2"
}
}