-
Notifications
You must be signed in to change notification settings - Fork 58
/
package.json
45 lines (45 loc) · 1.16 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
36
37
38
39
40
41
42
43
44
45
{
"name": "smallapp",
"version": "0.0.5",
"description": "",
"main": "index.js",
"bin": {
"smallapp": "./compiler/bin/index.js",
"sm": "./compiler/bin/index.js"
},
"devDependencies": {
"@babel/cli": "^7.23.9",
"@babel/core": "^7.23.9",
"@babel/preset-env": "^7.23.9",
"commander": "^7.1.0",
"cross-fetch": "^3.0.6",
"nanoid": "^3.1.21",
"nodemon": "^2.0.6",
"pnpm": "^6.32.9",
"postcss-selector-parser": "^6.0.4",
"prettier": "^2.2.1",
"rollup": "^4.9.6",
"rollup-plugin-babel": "^4.4.0",
"serve": "^13.0.2"
},
"scripts": {
"watch": "bash debug.sh",
"test": "echo \"Error: no test specified\" && exit 1",
"debug": "pnpm run debug --filter @fre-miniapp/compiler",
"start": "npm run build && npm run debug",
"build": "pnpm run build --filter @fre-miniapp/runtime",
"build:wxml": "cd ./packages/wxml && wasm-pack build --target nodejs "
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"chalk": "^5.2.0",
"chokidar": "^3.5.3",
"ejs": "^3.1.9",
"esbuild": "^0.20.0",
"express": "^4.18.2",
"md5": "^2.3.0",
"postcss": "^8.4.33"
}
}