forked from purescript-concur/purescript-concur-react
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 1.43 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-concur-react",
"version": "0.3.8",
"description": "Concur UI framework for Purescript, React backend",
"license": "MIT",
"repository": "purescript-concur/purescript-concur-react",
"author": {
"name": "Anupam Jain",
"email": "[email protected]"
},
"files": [],
"scripts": {
"build": "spago build",
"core": "cd core && spago build",
"stark": "cd stark && spago build",
"examples": "cd examples && spago build",
"examples-dev": "cd examples && spago build && parcel build --public-url ./ index.html",
"examples-prod": "cd examples && 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",
"docs": "cd examples && npm run examples-prod && cp docs/logo.png dist && cp docs/Purescript-Concur-Performance.png dist && rimraf docs && mv dist docs",
"start": "cd examples && parcel index.html",
"watch": "cd examples && parcel watch index.html"
},
"dependencies": {
"react": "^17.0.1",
"react-dom": "^17.0.1"
},
"devDependencies": {
"parcel-bundler": "^1.12.4",
"purescript": "^0.13.6",
"rimraf": "^3.0.2",
"spago": "^0.15.2"
}
}