-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.32 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "supercharge-homepage",
"description": "Supercharge homepage",
"version": "2.0.0",
"type": "module",
"dependencies": {
"@supercharge/collections": "~5.0.1",
"@supercharge/console": "~4.0.0-alpha.1",
"@supercharge/contracts": "~4.0.0-alpha.1",
"@supercharge/core": "~4.0.0-alpha.1",
"@supercharge/facades": "~4.0.0-alpha.1",
"@supercharge/fs": "~3.4.0",
"@supercharge/goodies": "~2.0.0",
"@supercharge/http": "~4.0.0-alpha.1",
"@supercharge/strings": "~2.0.0",
"@supercharge/view": "~4.0.0-alpha.1",
"front-matter": "~4.0.2",
"marked": "~10.0.0",
"shiki": "~0.14.5"
},
"devDependencies": {
"@supercharge/eslint-config-typescript": "~4.0.0",
"@supercharge/tsconfig": "~7.0.0",
"@swc/core": "1.3.96",
"@tailwindcss/forms": "~0.5.7",
"@tailwindcss/typography": "~0.5.10",
"@types/marked": "~6.0.0",
"@types/node": "~20.9.1",
"@types/supertest": "~2.0.16",
"autoprefixer": "~10.4.16",
"c8": "~8.0.1",
"concurrently": "~8.2.2",
"cssnano": "~6.0.1",
"eslint": "~8.54.0",
"expect": "~29.7.0",
"nodemon": "~3.0.1",
"postcss": "~8.4.31",
"postcss-cli": "~10.1.0",
"supertest": "~6.3.3",
"tailwindcss": "~3.3.5",
"tailwindcss-textshadow": "~2.1.3",
"ts-node": "~11.0.0-beta.1",
"tsx": "~4.1.3",
"typescript": "~5.2.2",
"uvu": "~0.5.6"
},
"engines": {
"node": ">= 20"
},
"license": "MIT",
"private": true,
"scripts": {
"start": "tsx server.ts",
"dev": "concurrently \"npm run dev:tsc:check\" \"npm run dev:css\" \"npm run dev:server\"",
"dev:css": "npm run build:css -- --watch",
"build:css": "postcss resources/css/app.css -o public/css/app.css",
"dev:server": "nodemon --ext hbs && tsx watch server.ts",
"prod": "npm run production",
"production": "concurrently \"npm run prod:css\"",
"prod:css": "NODE_ENV=production postcss resources/css/app.css -o public/css/app.css",
"lint": "eslint . --ext .ts",
"lint:fix": "npm run lint -- --fix",
"tsc:check": "tsc --noEmit --skipLibCheck",
"dev:tsc:check": "npm run tsc:check -- --watch",
"test": "npm run lint && npm run test:run",
"test:run": "c8 tsx ./node_modules/uvu/bin.js",
"test:run:alt": "c8 node --import tsx ./node_modules/uvu/bin.js",
"posttest": "c8 report --reporter=html"
}
}