-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 1.12 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
{
"name": "speakandspell",
"author": "Andrea Callea",
"description": "Speak & Spell in Elm :)",
"version": "1.0.0",
"private": true,
"type": "module",
"devDependencies": {
"autoprefixer": "^10.4.19",
"elm-i18next-gen": "^1.1.0",
"elm-review": "^2.12.0",
"elm-test": "^0.19.1-revision12",
"elm-tooling": "^1.15.1",
"postcss": "^8.4.38",
"prettier": "^3.3.2",
"standard": "^17.1.0",
"tailwindcss": "^3.4.4",
"vite": "^5.3.1",
"vite-plugin-compression": "^0.5.1",
"vite-plugin-elm": "^3.0.1",
"vite-plugin-imagemin": "^0.6.1",
"vite-plugin-webfont-dl": "^3.9.4"
},
"scripts": {
"postinstall": "elm-tooling install",
"dev": "vite",
"prebuild": "elm-tooling install && npm run localegen",
"build": "vite build",
"preview": "vite preview",
"standard": "standard --fix src/**/*.js",
"review": "elm-review --fix-all",
"test": "elm-test-rs",
"localegen": "elm-i18next-gen --source public/translations/translations.en.json --target src/elm --overwrite"
},
"standard": {
"ignore": [
"public",
"dist",
"elm.js"
]
}
}