-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.38 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
{
"name": "elm-tailwindcss-parcel-starter",
"version": "1.0.0",
"description": "a quick starter for simple elm project with parcel, tailwindcss and parcel",
"scripts": {
"start": "npm run css:build && npx run-pty % npm run css:watch % npm run app:start % npx elm-doc-preview -b % npx elm-review --watch",
"app:start": "npx parcel src/index.html",
"build": "npx parcel build src/index.html --public-url ./",
"css:build": "npx tailwindcss -i src/css/style.css -o src/style.css",
"css:prod": "NODE_ENV=production npm run css:build",
"css:watch": "SAFELISTING=true npx tailwindcss -i src/css/style.css -o src/style.css --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/leojpod/elm-tailwindcss-parcel-starter.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/leojpod/elm-tailwindcss-parcel-starter/issues"
},
"homepage": "https://github.com/leojpod/elm-tailwindcss-parcel-starter#readme",
"dependencies": {
"elm": "^0.19.1-3"
},
"devDependencies": {
"@parcel/transformer-elm": "^2.0.1",
"@typescript-eslint/eslint-plugin": "^5.7.0",
"@typescript-eslint/parser": "^5.7.0",
"elm-doc-preview": "^5.0.5",
"elm-review": "^2.6.1",
"eslint": "^7.7.0",
"eslint-config-standard": "^14.1.1",
"parcel": "^2.0.1",
"run-pty": "^2.3.2",
"tailwindcss": "^3.0.5"
}
}