-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.02 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
{
"name": "rubiks-cube",
"version": "0.1.0",
"author": "Grant Surlyn <[email protected]>",
"license": "GPL-3.0",
"repository": {
"type": "git",
"url": "https://github.com/sunflowerseastar/rubiks-cube"
},
"scripts": {
"build": "esbuild src/main.ts --bundle --minify --outfile=public/out.js",
"dev": "esbuild src/main.ts --outfile=public/out.js --bundle --watch",
"prettier:check": "prettier --check '**/*.{ts,tsx,js,jsx,css,md,json}'",
"prettier:write": "prettier --write '**/*.{ts,tsx,js,jsx,css,md,json}'",
"start": "esbuild src/main.ts --outfile=public/out.js --bundle --watch"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*.{ts,tsx,js,jsx,css,md,json}": [
"prettier --write"
]
},
"dependencies": {
"three": "~0.154.0"
},
"devDependencies": {
"@types/three": "~0.154.0",
"esbuild": "^0.19.7",
"lint-staged": "^15.1.0",
"prettier": "^3.1.0",
"simple-git-hooks": "^2.9.0",
"typescript": "^4.8.4"
}
}