-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.11 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
{
"name": "pizza-shop",
"version": "1.0.0",
"repository": "https://github.com/decatetsu/pizza-shop",
"author": "Andrii Yefremov <[email protected]>",
"license": "MIT",
"browserslist": [
"last 2 versions",
"> 1%"
],
"scripts": {
"server": "json-server --watch public/db.json --port=3000",
"prestart": "rimraf dist && rimraf .parcel-cache",
"start": "parcel --open",
"prebuild": "rimraf dist",
"build": "parcel build",
"build-github": "parcel build --public-url /pizza-store/ --dist-dir docs"
},
"source": "src/index.html",
"dependencies": {
"@swc/helpers": "^0.5.1",
"axios": "^1.4.0",
"json-server": "^0.17.3",
"react": "^18.2.0",
"react-content-loader": "^6.2.1",
"react-dom": "^18.2.0",
"react-redux": "^8.1.2",
"react-router-dom": "^6.14.2",
"redux": "^4.2.1",
"redux-thunk": "^2.4.2"
},
"devDependencies": {
"@mischnic/parcel-namer-preserve-structure": "^0.2.0",
"@parcel/transformer-sass": "^2.9.3",
"buffer": "^6.0.3",
"parcel": "^2.9.3",
"process": "^0.11.10",
"rimraf": "^5.0.1"
}
}