-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.76 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.76 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
{
"name": "alpine-typescript-project-example",
"description": "Example Alpine.js components project.",
"version": "0.0.2",
"license": "MIT",
"author": {
"name": "Jack Noordhuis",
"email": "me@jacknoordhuis.net",
"url": "https://jacknoordhuis.net"
},
"repository": "github:NxtLvlSoftware/alpine-typescript",
"homepage": "https://nxtlvlsoftware.github.io/alpine-typescript/",
"bugs": {
"url": "https://github.com/NxtLvlSoftware/alpine-typescript/issues"
},
"type": "module",
"private": true,
"scripts": {
"clean-install": "rm -rf ./node_modules && pnpm install",
"setup-dev": "pnpm run clean-install && pnpm run build",
"clean": "rm -rf ./dist",
"build": "pnpm run clean && export NODE_ENV=development && webpack --stats-error-details",
"dev": "pnpm run clean && export NODE_ENV=development && webpack serve --mode=development --open",
"build-dist": "pnpm run clean && export NODE_ENV=production && webpack --stats-error-details --fail-on-warnings --no-color"
},
"dependencies": {
"@nxtlvlsoftware/alpine-typescript": "file:../..",
"alpinejs": "^3.14.7"
},
"devDependencies": {
"@types/alpinejs": "^3.13.11",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.11.0",
"cssnano": "^6.1.2",
"cssnano-preset-advanced": "^6.1.2",
"html-webpack-plugin": "^5.6.3",
"mini-css-extract-plugin": "^2.9.2",
"postcss": "^8.4.49",
"postcss-cli": "^10.1.0",
"postcss-loader": "^7.3.4",
"postcss-preset-env": "^9.6.0",
"tailwindcss": "^3.4.16",
"terser-webpack-plugin": "^5.3.10",
"ts-loader": "^9.5.1",
"typescript": "^5.7.2",
"warnings-to-errors-webpack-plugin": "^2.3.0",
"webpack": "^5.97.1",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.2.1"
}
}