-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.81 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.81 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
77
78
79
{
"name": "cube-scrambler",
"version": "1.1.0",
"main": "dist/index.js",
"engines": {
"node": ">=18.x"
},
"type": "module",
"scripts": {
"# setup": "----------------------------------------------------------------",
"postinstall": "npm run build",
"# start": "----------------------------------------------------------------",
"start": "npm run node",
"s": "npm start",
"node": "node --enable-source-maps dist dist/index.js",
"n": "npm run node",
"nodemon": "nodemon --watch --enable-source-maps dist dist/index.js",
"nm": "npm run nodemon",
"# build": "----------------------------------------------------------------",
"clean": "rimraf dist",
"c": "npm run clean",
"prebuild": "npm run clean",
"build": "run-p tsb twb",
"b": "npm run build",
"prewatch": "npm run clean",
"watch": "run-p tsw tww bs",
"w": "npm run watch",
"# build detail": "----------------------------------------------------------------",
"typescript:build": "tsc --project tsconfig.build.json",
"tsb": "npm run typescript:build",
"typescript:watch": "npm run typescript:build -- -w",
"tsw": "npm run typescript:watch",
"pretailwind:build": "npm run update-browserslist-db",
"tailwind:build": "tailwindcss -i ./public/css/input.css -o ./public/css/output.css --minify",
"twb": "npm run tailwind:build",
"pretailwind:watch": "npm run update-browserslist-db",
"tailwind:watch": "tailwindcss -i ./public/css/input.css -o ./public/css/output.css --minify --watch",
"tww": "npm run tailwind:watch",
"update-browserslist-db": "npx -y update-browserslist-db@latest",
"# test": "----------------------------------------------------------------",
"test": "vitest --silent",
"t": "npm test",
"test:watch": "npm test -- -w",
"tw": "npm run test:watch",
"test:coverage": "npm test -- --coverage",
"tc": "npm run test:coverage",
"# tool": "----------------------------------------------------------------",
"lint": "eslint --fix src/**/*",
"l": "npm run lint",
"browser-sync": "browser-sync start --files public -p localhost:3001 --port 8080 --no-ui",
"bs": "npm run browser-sync",
"calibration": "node dist/calibration",
"": ""
},
"dependencies": {
"chalk": "^5.3.0",
"cosmiconfig": "^8.2.0",
"cosmiconfig-typescript-loader": "^5.0.0",
"express": "^4.21.2",
"min2phase.js": "github:cs0x7f/min2phase.js#c3431fabd961fc2680b2de605ddd99a203665215",
"opniz": "^0.3.1",
"zod": "^3.22.3"
},
"devDependencies": {
"@types/eslint": "^8.44.0",
"@types/express": "^4.17.17",
"@types/node": "^20.4.2",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"@vitest/coverage-istanbul": "^3.2.4",
"browser-sync": "^3.0.4",
"eslint": "^8.44.0",
"npm-run-all": "^4.1.5",
"rimraf": "^5.0.1",
"tailwindcss": "^3.3.3",
"typescript": "^5.1.6",
"vitest": "^3.2.4"
}
}