-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.52 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
{
"name": "schaerweb",
"version": "1.1.0",
"description": "Martin Schaer website",
"author": "Martin Schaer",
"license": "ISC",
"browserslist": "> 0.5%, last 2 versions, not dead",
"scripts": {
"imagemin": "./bin/imagemin.mjs",
"start": "hugo server --disableFastRender --gc",
"build": "hugo --gc --minify",
"lint:style": "stylelint \"assets/**/*.?(s)css\"",
"lint:script": "eslint \"assets/**/*.{j,t}s\"",
"lint": "npm run lint:script & npm run lint:style",
"format:check": "prettier --check \"assets/**/*\"",
"format": "prettier --write \"assets/**/*\""
},
"dependencies": {
"@types/p5": "^1.4.1",
"aframe": "^1.3.0",
"matter-js": "^0.18.0",
"normalize.css": "^8.0.1",
"p5": "^1.4.1",
"poly-decomp": "^0.3.0",
"three": "^0.144.0"
},
"devDependencies": {
"@types/matter-js": "^0.17.7",
"@types/three": "^0.144.0",
"@typescript-eslint/eslint-plugin": "^5.12.0",
"@typescript-eslint/parser": "^5.12.0",
"eslint": "^8.9.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^16.1.0",
"eslint-config-prettier": "^8.4.0",
"eslint-plugin-import": "^2.25.4",
"imagemin": "^8.0.1",
"imagemin-mozjpeg": "^10.0.0",
"imagemin-pngquant": "^9.0.2",
"prettier": "2.5.1",
"stylelint": "^14.5.1",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-standard": "^25.0.0",
"stylelint-config-standard-scss": "^3.0.0",
"typescript": "^4.7.3"
},
"volta": {
"node": "17.5.0"
}
}