-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 904 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 904 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
{
"name": "capt",
"private": true,
"version": "0.0.0",
"scripts": {
"front": "vite serve front --config front/vite.config.js",
"back": "node back/dist/bundle.back.js",
"build:front": "vite build front --config front/vite.config.js",
"build:back": "rollup --config back/rollup.config.ts",
"test:front": "jest --config front/jest.config.ts"
},
"dependencies": {
"@rollup/plugin-typescript": "^8.3.2",
"konva": "^8.3.8",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-konva": "^18.1.0",
"react-markdown": "^8.0.3"
},
"devDependencies": {
"@testing-library/react": "^13.2.0",
"@types/jest": "^27.5.1",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"@vitejs/plugin-react": "^1.3.0",
"jest": "^28.1.0",
"ts-jest": "^28.0.2",
"ts-node": "^10.8.0",
"typescript": "^4.6.3",
"vite": "^2.9.9"
}
}