-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.71 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "@kujenga/website",
"version": "0.1.0",
"license": "CC-BY-4.0",
"repository": "[email protected]:kujenga/website.git",
"scripts": {
"postinstall": "./scripts/postinstall.sh",
"start": "./scripts/start",
"start:prod": "cd app && go run -v main.go --dev",
"test": "jest",
"test:go": "./app/test",
"test:e2e": "playwright test",
"lint": "./scripts/lint",
"lint:js": "eslint --ignore-path .gitignore --ext .jsx,.js .",
"lint:style": "stylelint assets/**/*.[s]css",
"lint:html": "npm run build -- --quiet && html-validate app/site/public",
"lint:fmt": "prettier -c .",
"fix:fmt": "prettier -w .",
"build": "./scripts/build",
"build:prod": "ENVIRONMENT=production ./scripts/build",
"clean": "rm -rf app/site/public && make -C exp/go-templates clean",
"deploy:gh-pages": "npm run build && ./scripts/deploy-gh-pages.sh",
"deploy:appengine": "npm run build && gcloud app deploy ./app/ --project",
"prepare": "husky"
},
"devDependencies": {
"@playwright/test": "^1.49.1",
"@types/node": "^22.10.5",
"babel-jest": "^29.7.0",
"esbuild": "^0.24.2",
"esbuild-jest2": "^0.6.7",
"eslint": "^v8.57.1",
"eslint-config-preact": "^1.5.0",
"eslint-plugin-jest": "^28.10.0",
"eslint-plugin-jsdoc": "^50.6.1",
"html-validate": "^9.1.3",
"husky": "^9.1.7",
"jest": "^29.0.0",
"jest-environment-jsdom": "^29.7.0",
"jest-junit": "^16.0.0",
"prettier": "^3.4.2",
"stylelint": "^16.13.0",
"stylelint-config-standard": "^37.0.0",
"stylelint-config-standard-scss": "^14.0.0",
"stylelint-prettier": "^5.0.2"
},
"dependencies": {
"jquery": "^3.6.0",
"lunr": "^2.3.9",
"preact": "^10.25.4"
}
}