-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
54 lines (54 loc) · 1.45 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
{
"name": "elm-batteries",
"version": "2.0.0",
"description": "Elm + parcel + tailwind + cypress + netlify and more!",
"main": "index.js",
"private": true,
"devDependencies": {
"autoprefixer": "^9.8.8",
"cypress": "^8.6.0",
"elm": "^0.19.1-5",
"elm-hot": "^1.1.6",
"netlify-cli": "^6.12.1",
"node-elm-compiler": "^5.0.6",
"parcel-bundler": "^1.12.4",
"postcss": "^7.0.39",
"sass": "^1.42.1",
"tailwindcss": "npm:@tailwindcss/postcss7-compat@^2.2.16"
},
"scripts": {
"dev": "netlify dev -p 8888",
"dev:live": "netlify dev --live",
"deploy": "npm run build && netlify deploy",
"deploy:prod": "netlify deploy --prod",
"start": "npm run build-img && parcel index.html",
"build-img": "parcel build img/*",
"build": "npm run build-img && parcel build index.html --no-cache",
"test": "elm-test",
"test:watch": "elm-test --watch",
"cypress": "cypress run",
"cypress:open": "cypress open"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cedricss/elm-batteries.git"
},
"keywords": [
"elm",
"parcel",
"tailwind",
"purgecss",
"cypress",
"netlify"
],
"author": {
"name": "Cédric Soulas",
"email": "[email protected]",
"url": "https://concat.dev/elm"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/cedricss/elm-batteries/issues"
},
"homepage": "https://github.com/cedricss/elm-batteries#readme"
}