forked from DevJonTaylor/code-vegeta
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.1 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
{
"name": "code-vegeta",
"version": "1.0.0",
"description": "",
"engines": {
"node": "16.13.1"
},
"main": "server/server.js",
"scripts": {
"start": "node server/server.js",
"develop": "concurrently \"cd server && npm run watch\" \"cd client && npm run dev\"",
"install": "cd server && npm i && cd ../client && npm i",
"build": "cd client && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DevJonTaylor/code-vegeta.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/DevJonTaylor/code-vegeta/issues"
},
"homepage": "https://github.com/DevJonTaylor/code-vegeta#readme",
"devDependencies": {
"concurrently": "^7.2.1"
},
"dependencies": {
"@stripe/react-stripe-js": "^1.8.1",
"@stripe/stripe-js": "^1.29.0",
"cors": "^2.8.5",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"grapesjs": "^0.18.4",
"grapesjs-project-manager": "^1.0.17",
"grapesjs-react": "^4.0.1-alpha",
"grapesjs-tabs": "^1.0.6",
"nodemon": "^2.0.16",
"stripe": "^9.4.0"
}
}