-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.23 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
{
"name": "elm-survey-app",
"version": "0.0.1",
"description": "",
"main": "index.js",
"scripts": {
"elm": "elm",
"elm-format": "elm-format",
"elm-live": "elm-live",
"elm-test": "elm-test",
"elm-graphql": "elm-graphql",
"tailwind": "tailwind",
"build": "yarn build:css && yarn build:elm && yarn copy-index",
"build:css": "tailwind build styles.css -o main.css",
"build:elm": "elm make src/Main.elm --output=dist/app.js --optimize",
"copy-index": "copyfiles index.html dist/ && copyfiles main.css dist/ && copyfiles ./assets/* dist/",
"format": "elm-format src/",
"generate-api": "elm-graphql https://graphql.fauna.com/graphql --base SurveyAPI --output src --header \"Authorization: Bearer fnAD68qBMJACB2CL8qqCRoQpRcviQQSbl27YO3pj\"",
"start": "yarn build:css && elm-live src/Main.elm -- --output=app.js",
"test": "elm-test"
},
"author": "Kajetan Swiatek",
"license": "ISC",
"dependencies": {
"elm": "^0.19.1-3",
"tailwindcss": "^1.9.6"
},
"devDependencies": {
"@dillonkearns/elm-graphql": "^4.0.5",
"@tailwindcss/custom-forms": "^0.2.1",
"copyfiles": "^2.4.0",
"elm-format": "^0.8.4",
"elm-live": "^4.0.2",
"elm-test": "^0.19.1-revision4"
}
}