-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
28 lines (28 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
{
"name": "purescript-concur-ui",
"version": "0.1.0",
"description": "A port of Elm-UI to Purescript Concur",
"main": "index.js",
"scripts": {
"test": "spago test",
"clean": "rimraf .cache .spago .psci_modules output .pulp-cache prod dist",
"build": "spago build",
"dev": "rimraf dist && spago build && parcel build --public-url ./ index.html",
"prod": "rimraf prod dist && mkdir prod && spago bundle-app --main Main --to prod/index.prod.js && java -jar closure-compiler/closure-compiler-v20190301.jar --js prod/index.prod.js --js_output_file prod/index.js && cp index.html prod/index.html && parcel build --public-url ./ prod/index.html && rimraf prod",
"docs": "npm run prod && rimraf docs && mv dist docs",
"start": "spago build && parcel index.html",
"watch": "spago build && parcel watch index.html"
},
"author": "",
"license": "ISC",
"devDependencies": {
"parcel-bundler": "^1.12.4",
"purescript": "^0.13.6",
"rimraf": "^3.0.0",
"spago": "^0.14.0"
},
"dependencies": {
"react": "^16.13.0",
"react-dom": "^16.13.0"
}
}