-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.2 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
41
42
43
44
45
46
47
48
{
"name": "pastry-shop",
"version": "1.0.0",
"description": "Pastry shop using ReactJS",
"scripts": {
"clean": "rimraf -rf dist",
"predev": "npm run clean",
"prebuild": "npm run clean",
"pregithub-pages": "npm run clean",
"dev": "parcel serve ./src/index.html",
"build": "parcel build ./src/index.html --no-cache",
"github-pages": "npm run build -- --public-url=/pastry-shop/",
"start": "pm2 start 'npm run dev' --name app",
"stop": "pm2 kill",
"logs": "pm2 logs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/daggerok/pastry-shop.git"
},
"keywords": [
"parcel",
"rsuite",
"react",
"sass"
],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/daggerok/pastry-shop/issues"
},
"homepage": "https://github.com/daggerok/pastry-shop#readme",
"dependencies": {
"react": "18.2.0",
"react-dom": "18.2.0",
"rsuite": "5.23.0"
},
"devDependencies": {
"@parcel/transformer-sass": "2.8.0",
"@types/react": "18.0.25",
"@types/react-dom": "18.0.9",
"lightningcss": "1.17.1",
"parcel": "2.8.0",
"pm2": "5.2.2",
"process": "0.11.10",
"rimraf": "3.0.2"
}
}