-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 2.15 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 2.15 KB
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": "weekend-go-web",
"version": "1.0.0",
"appVersion": "1.0.35",
"gaId": "G-5BJB8F6W1D",
"iosUrl": "https://apps.apple.com/vn/app/cu%E1%BB%91i-tu%E1%BA%A7n-%C4%91i-%C4%91%C3%A2u/id6765682490",
"androidUrl": "https://github.com/unknown-studio-dev/weekend-go-android-distribution/releases/download/v1.0.3/cuoituandidauv1.0.3.apk",
"description": "Landing page for Cuối Tuần Đi Đâu — mobile app helping Vietnamese parents in Hanoi and Ho Chi Minh City discover weekend activities for their families.",
"scripts": {
"build:css": "tailwindcss -i ./src/input.css -o ./assets/css/styles.css --minify",
"build:html": "node scripts/build-html.js",
"build": "npm run build:css && npm run build:html",
"dev:css": "tailwindcss -i ./src/input.css -o ./assets/css/styles.css --watch",
"dev": "concurrently \"npm run dev:css\" \"npx serve -l 3000 .\"",
"test:visual": "playwright test",
"test:analytics": "node --test tests/app-links.test.js",
"test:visual:update": "playwright test --update-snapshots",
"lint": "eslint assets/js/**/*.js scripts/**/*.js",
"format": "prettier --write \"assets/js/**/*.js\" \"scripts/**/*.js\" \"src/**/*.css\"",
"format:check": "prettier --check \"assets/js/**/*.js\" \"scripts/**/*.js\" \"src/**/*.css\"",
"prepare": "husky"
},
"engines": {
"node": ">=18"
},
"repository": {
"type": "git",
"url": "git+https://github.com/studium-ignotum/weekend-go-web.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "commonjs",
"bugs": {
"url": "https://github.com/studium-ignotum/weekend-go-web/issues"
},
"homepage": "https://github.com/studium-ignotum/weekend-go-web#readme",
"devDependencies": {
"@axe-core/playwright": "^4.11.2",
"@playwright/test": "^1.59.1",
"concurrently": "^9.2.1",
"eslint": "^10.2.1",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"prettier": "^3.8.3",
"serve": "^14.2.6",
"tailwindcss": "^3.4.19"
},
"lint-staged": {
"assets/js/**/*.js": ["eslint --fix", "prettier --write"],
"scripts/**/*.js": ["eslint --fix", "prettier --write"],
"src/**/*.css": ["prettier --write"]
}
}