-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.12 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 2.12 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "blocklet-fullstack",
"version": "0.1.0",
"scripts": {
"dev": "blocklet dev",
"lint": "eslint src api --ext .mjs,.js,.jsx,.ts,.tsx",
"lint:fix": "npm run lint -- --fix",
"start": "cross-env NODE_ENV=development nodemon api/dev.js -w api",
"clean": "node scripts/build-clean.js",
"bundle": "npm run bundle:client && npm run bundle:api",
"bundle:client": "vite build",
"bundle:api": "npm run clean && blocklet bundle --zip --create-release",
"deploy": "npm run bundle && blocklet deploy .blocklet/bundle",
"upload": "npm run bundle && blocklet upload .blocklet/release/blocklet.json",
"prepare": "husky install",
"bump-version": "zx --quiet scripts/bump-version.mjs"
},
"lint-staged": {
"*.{mjs,js,jsx,ts,tsx}": [
"prettier --write"
],
"*.{css,less,scss,json,graphql}": [
"prettier --write"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"@arcblock/did-auth": "^1.17.5",
"@arcblock/did-auth-storage-nedb": "^1.7.1",
"@blocklet/sdk": "^1.16.28",
"@ocap/client": "^1.17.5",
"@ocap/mcrypto": "^1.18.108",
"@ocap/wallet": "^1.18.108",
"antd": "^5.18.3",
"axios": "^1.6.2",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv-flow": "^3.3.0",
"express": "^4.18.2",
"express-async-errors": "^3.1.1",
"less": "^4.2.0",
"less-loader": "^12.2.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.21.0",
"rimraf": "^3.0.2",
"sqlite3": "^5.1.7"
},
"devDependencies": {
"@arcblock/eslint-config": "^0.2.4",
"@vitejs/plugin-react": "^4.2.1",
"bumpp": "^8.2.1",
"cross-env": "^7.0.3",
"eslint": "^8.56.0",
"husky": "^8.0.3",
"lint-staged": "^12.5.0",
"nodemon": "^3.0.2",
"npm-run-all": "^4.1.5",
"prettier": "^3.1.1",
"vite": "^5.0.10",
"vite-plugin-blocklet": "^0.7.9",
"vite-plugin-svgr": "^4.2.0",
"zx": "^7.2.3"
}
}