-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 846 Bytes
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 846 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
{
"name": "quicksort",
"version": "1.0.0",
"description": "",
"main": "build/app/index.html",
"scripts": {
"watch:app": "parcel watch src/app/index.html --out-dir build/app",
"watch:server": "parcel src/server/index.ts --target node --out-dir build/server",
"start:app": "parcel src/app/index.html --out-dir build/app",
"start:server": "nodemon build/server/index.js"
},
"author": "Anton Ekström, Jakob Bengtsson",
"license": "ISC",
"devDependencies": {
"@types/react": "^16.9.56",
"@types/react-beautiful-dnd": "^13.0.0",
"@types/react-dom": "^16.9.9",
"cssnano": "^4.1.10",
"prettier": "^2.4.1",
"sass": "^1.29.0",
"typescript": "^4.0.5",
"vite": "^2.6.14"
},
"dependencies": {
"react": "^16.0.0",
"react-beautiful-dnd": "^13.0.0",
"react-dom": "^16.0.0"
}
}