-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
30 lines (30 loc) · 1.08 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
{
"name": "purescript-webpack-hw",
"version": "0.1.0",
"description": "Example using PureScript with webpack",
"license": "MIT",
"repository": "",
"author": {
"name": "Mateusz Curylo"
},
"files": [],
"scripts": {
"webpack": "DEBUG=purs-loader* DEBUG_DEPTH=100 webpack --progress --bail --hot",
"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",
"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",
"test": "pulp test",
"start": "npm run webpack:server"
},
"dependencies": {
"lodash.difference": "^4.5.0",
"purescript": "^0.11.0",
"purescript-psa": "^0.5.0",
"purs-loader": "^3.1.1",
"webpack": "^3.5.5",
"webpack-dev-server": "^2.7.1",
"wrappy": "^1.0.2"
}
}