-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 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
37
38
39
40
41
42
{
"name": "workspace-rolodex",
"version": "1.0.0",
"description": "interactive munsell color space viewer",
"main": "main.js",
"type": "module",
"homepage": "https://sbecker11.github.io/workspace-rolodex/",
"scripts": {
"hue_pages": "node ./src/chips_to_hue_png_files.js",
"dev": "vite --open chrome --port 3000",
"test": "jest",
"build": "vite build",
"predeploy": "npm run build",
"deploy": "gh-pages -d dist"
},
"author": "Shawn Becker",
"license": "ISC",
"dependencies": {
"canvas": "^2.11.2",
"three": "^0.158.0"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"babel-jest": "^29.7.0",
"gh-pages": "^6.1.1",
"jest": "^29.7.0",
"vite": "^5.4.8"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sbecker11/workspace-rolodex.git"
},
"bugs": {
"url": "https://github.com/sbecker11/workspace-rolodex/issues"
},
"jest": {
"transform": {
"^.+\\.jsx?$": "babel-jest"
}
}
}