-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.28 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.28 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
{
"name": "stbx-cloud-console",
"version": "1.0.0",
"description": "Statebox Cloud Admin Console",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"postinstall": "spago install",
"start": "npm run build && concurrently --kill-others --handle-input npm:watch npm:serve",
"build": "spago bundle-module --main Statebox.Console.Main --to output/index.js --purs-args --censor-codes=ImplicitImport,ImplicitQualifiedImport,HidingImport",
"watch": "spago bundle-module --main Statebox.Console.Main --to output/index.js --watch --purs-args --censor-codes=ImplicitImport,ImplicitQualifiedImport,HidingImport",
"test": "spago test",
"docs": "spago docs",
"repl": "spago repl",
"serve": "parcel html/index.html",
"bundle": "npm run build && rm -rf dist && parcel build html/index.html --public-url . --no-source-maps"
},
"keywords": [
"statebox"
],
"author": "Erik Post <erik@shinsetsu.nl>",
"license": "Commercial",
"devDependencies": {
"concurrently": "^5.0.2",
"parcel-bundler": "^1.12.4",
"purescript": "^0.13.8",
"purescript-psa": "^0.7.3",
"spago": "^0.15.2"
},
"dependencies": {
"@statebox/stbx-js": "0.0.31",
"@statebox/style": "0.0.9",
"dagre": "^0.8.4",
"firebaseui": "^4.5.0"
}
}