-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
57 lines (57 loc) · 1.8 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
53
54
55
56
57
{
"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": "jest --config jest-e2e.config.js",
"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 install"
},
"devDependencies": {
"babel-jest": "^29.7.0",
"esbuild": "^0.19.8",
"esbuild-jest": "^0.5.0",
"eslint": "^8.55.0",
"eslint-config-preact": "^1.3.0",
"eslint-plugin-jest": "^27.6.0",
"eslint-plugin-jsdoc": "^46.9.0",
"html-validate": "^8.0.0",
"husky": "^8.0.0",
"jest": "^29.0.0",
"jest-environment-jsdom": "^29.7.0",
"jest-junit": "^16.0.0",
"jest-puppeteer": "^9.0.1",
"prettier": "^3.0.0",
"puppeteer": "^21.5.2",
"stylelint": "^15.10.1",
"stylelint-config-standard": "^34.0.0",
"stylelint-config-standard-scss": "^11.1.0",
"stylelint-prettier": "^4.1.0"
},
"dependencies": {
"jquery": "^3.6.0",
"lunr": "^2.3.9",
"preact": "^10.6.4"
},
"overrides": {
"esbuild-jest": {
"babel-jest": "$babel-jest"
}
}
}