-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 1013 Bytes
/
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
{
"name": "tk-percura-2fa",
"description": "Talenteca Percura 2FA",
"version": "1.0.0",
"private": true,
"license": "UNLICENSED",
"scripts": {
"clean": "rm -rf elm-stuff",
"compile:elm": "elm make src/Main.elm --output=public/assets/js/elm.js",
"compile:css": "postcss public/assets/pcss/styles.pcss -o public/assets/css/styles.css",
"compile": "run-p compile:elm compile:css",
"dev": "run-p watch serve",
"build": "elm make src/Main.elm --output=public/assets/js/elm.js --optimize",
"serve": "serve public",
"watch:elm": "watch 'yarn run compile:elm' src",
"watch:css": "watch 'yarn run compile:css' public/assets/pcss/ src",
"watch": "run-p watch:elm watch:css"
},
"dependencies": {
"serve": "^11.3.2"
},
"devDependencies": {
"autoprefixer": "^10.2.5",
"cssnano": "^4.1.11",
"elm": "^0.19.1-5",
"npm-run-all": "^4.1.5",
"postcss": "^8.2.9",
"postcss-cli": "^8.3.1",
"tailwindcss": "^2.1.1",
"watch": "^1.0.2"
}
}