-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.21 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": "tori.ee",
"version": "1.0.0",
"description": "",
"default": "index.html",
"scripts": {
"start": "concurrently \"npm:serve\" \"npm:watch\" \"npm:tailwind\"",
"serve": "rm -rf .parcel-cache dist/ && parcel serve src/index.html src/en/index.html -p 1234 --open",
"tailwind": "tailwindcss -i ./src/input.css -o ./dist/output.css --watch",
"build:prod": "parcel build src/index.html src/en/index.html && cp www/mail.php dist/",
"i18n": "npx static-i18n -l ee -i ee -i en www --outputDir src",
"watch": "nodemon --watch www/ -e json,html -x \"npm run i18n\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/siimsams/tori.ee.git"
},
"author": "siim sams",
"license": "ISC",
"bugs": {
"url": "https://github.com/siimsams/tori.ee/issues"
},
"homepage": "https://github.com/siimsams/tori.ee#readme",
"devDependencies": {
"@parcel/packager-raw-url": "^2.8.3",
"@parcel/transformer-webmanifest": "^2.8.3",
"autoprefixer": "^10.4.14",
"concurrently": "^8.2.0",
"nodemon": "^3.0.1",
"parcel": "^2.8.3",
"postcss": "^8.4.24",
"sharp": "^0.31.3",
"tailwindcss": "^3.3.2"
},
"dependencies": {
"static-i18n": "^0.2.10"
}
}