forked from ethul/purescript-webpack-example
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.71 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.71 KB
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
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "purescript-webpack-example",
"version": "0.1.0",
"private": true,
"flat": 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": "webpack --progress --bail",
"webpack:watch": "webpack --progress --watch",
"webpack:server": "webpack-dev-server --progress --inline --hot",
"webpack:server:debug": "DEBUG=purs-loader webpack-dev-server --progress --inline --hot",
"psc": "psc 'bower_components/purescript-*/src/**/*.purs' 'src/**/*.purs'",
"psc-bundle": "psc-bundle output/**/*.js",
"start": "node bundle.js"
},
"dependencies": {
"purescript": "^0.10.1",
"purescript-psa": "^0.3.9",
"purs-loader": "^2.1.1",
"react": "^15.3.2",
"react-dom": "^15.3.2",
"webpack": "^1.12.14",
"webpack-dev-server": "^1.14.1",
"wrappy": "^1.0.2"
},
"resolutions": {
"readable-stream": "2.1.5",
"vinyl": "1.2.0",
"inherits": "2.0.3",
"object-assign": "4.1.0",
"through2": "2.0.1",
"minimist": "1.2.0",
"supports-color": "3.1.2",
"end-of-stream": "1.1.0",
"once": "1.4.0",
"commander": "2.9.0",
"duplexer2": "0.1.4",
"glob": "7.1.1",
"glob-parent": "3.0.1",
"is-glob": "3.1.0",
"camelcase": "2.1.1",
"semver": "5.3.0",
"source-map": "0.5.6",
"async": "1.5.2",
"memory-fs": "0.3.0",
"punycode": "1.4.1",
"wordwrap": "0.0.3",
"qs": "6.3.0",
"assert-plus": "1.0.0",
"faye-websocket": "0.11.0",
"url-parse": "1.1.7",
"clone": "1.0.2",
"is-extglob": "2.1.0",
"globby": "6.1.0"
}
}