-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 862 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 862 Bytes
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": "bespoke-template",
"version": "0.0.2",
"description": "Graphing calculator with a local development server",
"main": "server.js",
"scripts": {
"start": "npm run start:prod",
"start:prod": "IS_PRODUCTION=true node server.js",
"start:dev": "concurrently \"npm run dev:vite\" \"npm run dev:api\"",
"dev:vite": "vite",
"dev:api": "PORT=3001 node server.js",
"build": "vite build",
"test": "vitest",
"test:run": "vitest run",
"test:ui": "vitest --ui"
},
"keywords": [
"bespoke",
"template",
"development",
"server"
],
"author": "",
"license": "MIT",
"dependencies": {
"function-plot": "1.24.4",
"katex": "^0.16.11",
"mathjs": "^12.4.1"
},
"devDependencies": {
"concurrently": "^8.2.2",
"jsdom": "^27.3.0",
"vite": "^7.2.4",
"vitest": "^4.0.15"
}
}