-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.53 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.53 KB
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": "skill-progress",
"version": "1.4.2",
"description": "Augment skill-icons with a progress bar to show proficiency",
"homepage": "https://github.com/slimnate/skill-progress#readme",
"bugs": {
"url": "https://github.com/slimnate/skill-progress/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/slimnate/skill-progress.git"
},
"license": "ISC",
"author": "Nathan Hoyt (slimnate)",
"type": "module",
"main": "index.js",
"scripts": {
"dev": "concurrently -k -n server,web -c green,blue \"npm run dev:server\" \"npm run dev:web\"",
"dev:server": "tsx watch src/server.ts",
"dev:web": "vite --config web/vite.config.ts",
"build:web": "vite build --config web/vite.config.ts",
"build:server": "tsc",
"build:assets": "copyfiles \"img/**\" dist",
"build": "npm run build:web && npm run build:server && npm run build:assets",
"start": "node dist/server.js",
"netlify:dev": "netlify dev",
"test": ""
},
"devDependencies": {
"@types/express": "^5.0.6",
"@types/node": "^25.2.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@types/xmldom": "^0.1.34",
"@vitejs/plugin-react": "^5.1.4",
"concurrently": "^9.2.1",
"copyfiles": "^2.4.1",
"netlify-cli": "^22.0.0",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vite": "^7.3.1"
},
"dependencies": {
"@netlify/functions": "^5.1.2",
"express": "^5.2.1",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-router-dom": "^7.13.1"
}
}