-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.53 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
46
47
48
49
50
{
"name": "tools-web",
"version": "1.1.59",
"description": "tools-web is a tool to speed up developing a website using the cli.",
"main": "main",
"scripts": {
"postinstall": "node setup.js",
"start": "node ./dist/src/multi-command.js",
"build": "tsc --build",
"build:watch": "tsc --build --watch",
"docs:dev": "cd ./.doc && npm run dev",
"docs:build": "cd ./.doc && npm run build",
"docs:serve": "cd ./.doc && npm run serve",
"test:express": "node ./dist/test/cli/express.test.js",
"test:firebase": "node ./dist/test/cli/firebase.test.js",
"test:react": "node ./dist/test/cli/react.test.js",
"test:sys": "node ./dist/test/cli/sys.test.js",
"test:tools": "node ./dist/test/cli/tools.test.js",
"test:tailwind": "node ./dist/test/cli/tailwind.test.js",
"test:vite": "node ./dist/test/cli/vite.test.js",
"test:vue": "node ./dist/test/cli/vue.test.js",
"test:all": "npm run test:firebase && npm run test:react && npm run test:sys && npm run test:tools && npm run test:tailwind && npm run test:vite && npm run test:vue"
},
"type": "module",
"keywords": [
"cli",
"express",
"firebase",
"react",
"vite",
"vue",
"tools",
"frontend",
"backend"
],
"author": "ferdiansyah0611",
"license": "ISC",
"bin": {
"twb": "node ./dist/src/multi-command.js"
},
"devDependencies": {
"@tsconfig/node-lts": "^18.12.5",
"@types/node": "^20.16.5"
},
"dependencies": {
"@caporal/core": "^2.0.7",
"chalk": "^5.3.0",
"minimist": "^1.2.8"
}
}