-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
35 lines (35 loc) · 1.17 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
34
35
{
"name": "dapp",
"description": "KimlikDAO dApp",
"author": "KimlikDAO <dao@kimlikdao.org>",
"license": "GPL",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"postinstall": "mkdir -p ./node_modules/@kimlikdao && ln -sfn ../../lib ./node_modules/@kimlikdao/lib && ln -sfn ../../lib/kdjs ./node_modules/@kimlikdao/kdjs",
"dev": "NODE_ENV=production bun lib/kastro/kastro.js serve",
"compiled": "NODE_ENV=production bun lib/kastro/kastro.js serve --compiled",
"build": "NODE_ENV=production bun lib/kastro/kastro.js build",
"canary": "NODE_ENV=production bun lib/kastro/workers/canaryServer.js",
"deploy": "NODE_ENV=production bun lib/kastro/kastro.js deploy",
"clean": "rm -rf build && clear"
},
"devDependencies": {
"acorn": "^8.14.0",
"acorn-walk": "^8.3.4",
"astring": "^1.9.0",
"bun-types": "^1.1.42",
"css": "^3.0.0",
"csso-cli": "^4.0.2",
"google-closure-compiler": "^20240317.0.0",
"html-minifier": "^4.0.0",
"htmlparser2": "^9.1.0",
"js-yaml": "^4.1.0",
"sax": "^1.4.1",
"svg-pathdata": "^7.1.0",
"svgo": "^3.3.2",
"uglify-js": "~3.19.3",
"vite": "^5.4.11"
}
}