-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.84 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.84 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
{
"name": "landingpages-ai-template",
"version": "1.0.0",
"main": "src/index.ts",
"scripts": {
"test": "vitest run",
"test:watch": "vitest",
"coverage": "vitest run --coverage",
"prettier": "prettier --check './{,**/}*.{css,ts,js,mts,mjs,json,yaml,yml}' '!**/package-lock.json'",
"prettier:fix": "prettier --write './{,**/}*.{css,ts,js,mts,mjs,json,yaml,yml}' '!**/package-lock.json'",
"lint:eslint": "eslint .",
"lint:types": "tsc --noEmit",
"lint": "npm run lint:eslint && npm run lint:types",
"quality": "npm run prettier:fix && npm run lint",
"build": "webpack --mode=development",
"build:prod": "webpack --mode=production"
},
"author": "",
"license": "MIT",
"description": "",
"devDependencies": {
"@eslint/js": "^9.24.0",
"@hotwired/stimulus": "^3.2.2",
"@hotwired/stimulus-webpack-helpers": "^1.0.1",
"@tailwindcss/forms": "^0.5.10",
"@tailwindcss/postcss": "^4.1.4",
"@types/webpack-env": "^1.18.8",
"@typescript-eslint/eslint-plugin": "^8.30.1",
"@vitest/coverage-v8": "^2.0.5",
"@vitest/ui": "^2.0.5",
"copy-webpack-plugin": "^13.0.0",
"css-loader": "^7.1.2",
"eslint": "^9.24.0",
"glob": "^11.0.1",
"html-loader": "^5.1.0",
"html-webpack-plugin": "^5.6.3",
"jsdom": "^24.1.1",
"mini-css-extract-plugin": "^2.9.2",
"postcss": "^8.5.3",
"postcss-loader": "^8.1.1",
"posthtml": "^0.16.6",
"posthtml-include": "^2.0.1",
"posthtml-loader": "^2.0.1",
"prettier": "^3.5.3",
"tailwindcss": "^4.1.4",
"ts-loader": "^9.5.2",
"typescript": "^5.8.3",
"vitest": "^2.0.5",
"webpack": "^5.99.5",
"webpack-cli": "^6.0.1"
}
}