-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
30 lines (30 loc) · 1.14 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-concur-react-examples",
"version": "0.3.8",
"description": "Concur UI framework for Purescript, React backend examples",
"license": "MIT",
"repository": "purescript-concur/purescript-concur-react-examples",
"author": {
"name": "Anupam Jain",
"email": "[email protected]"
},
"files": [],
"scripts": {
"build": "spago build",
"dev": "spago build && parcel build --public-url ./ index.html",
"prod": "rimraf temp && mkdir temp && spago bundle-app --to temp/index.prod.js && java -jar ./closure-compiler/closure-compiler-v20190301.jar --compilation_level ADVANCED_OPTIMIZATIONS --js temp/index.prod.js --js_output_file temp/index.prod.minified.js && cp index.prod.html temp && parcel build --public-url ./ temp/index.prod.html && mv dist/index.prod.html dist/index.html && rimraf temp",
"start": "parcel index.html",
"watch": "parcel watch index.html"
},
"dependencies": {
"react": "^16.8.6",
"react-dom": "^16.8.6"
},
"devDependencies": {
"parcel": "^2.0.0-beta.2",
"parcel-bundler": "^1.12.4",
"purescript": "^0.14.1",
"rimraf": "^3.0.2",
"spago": "^0.20.3"
}
}