-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathpackage.json
57 lines (57 loc) · 1.8 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
{
"author": "Simon Hampton",
"name": "elm-webpack-starter",
"version": "4.0.1",
"description": "Elm 0.19 starter with Webpack 5 & Tailwind",
"main": "index.js",
"scripts": {
"analyse": "elm-analyse -s -p 3001 -o",
"build": "npm run prod",
"dev": "webpack serve --port 3000 --config config/webpack.dev.js",
"nodebug": "webpack serve --port 3000 --config config/webpack.dev.js --env nodebug",
"prod": "NODE_ENV=production webpack --config config/webpack.prod.js",
"start": "npm run dev",
"test": "elm-test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/simonh1000/elm-webpack-starter.git"
},
"license": "MIT",
"devDependencies": {
"autoprefixer": "^10.4.20",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^12.0.2",
"css-loader": "^7.1.2",
"css-minimizer-webpack-plugin": "^7.0.0",
"elm": "^0.19.1-6",
"elm-reloader": "^1.0.0",
"elm-test": "^0.19.1-revision9",
"elm-webpack-loader": "^8.0.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.6.3",
"mini-css-extract-plugin": "^2.9.2",
"postcss": "^8.4.49",
"postcss-cli": "^11.0.0",
"postcss-loader": "^8.1.1",
"resolve-url-loader": "^5.0.0",
"sass": "^1.80.7",
"sass-loader": "^16.0.3",
"style-loader": "^4.0.0",
"terser-webpack-plugin": "^5.3.10",
"url-loader": "^4.1.1",
"webpack": "^5.96.1",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.1.0",
"webpack-merge": "^6.0.1"
},
"dependencies": {
"tailwindcss": "^3.4.14"
},
"engines": {
"node": ">=16"
},
"prettier": {
"tabWidth": 4
}
}