-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
33 lines (33 loc) · 1.03 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
{
"name": "svelte-express-boilerplate",
"version": "1.0.0",
"description": "Boilerplate for developing full stack apps with Express and Svelte.js",
"main": "src/app.js",
"scripts": {
"client-install": "cd client && npm install",
"start": "node src/index.js",
"serve:server": "nodemon src/index.js",
"serve:client": "cd client && npm run dev",
"dev": "concurrently \"npm run serve:server\" \"npm run serve:client\"",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false cd client && npm install && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dj0nny/svelte-express-boilerplate.git"
},
"author": "dj0nny",
"license": "MIT",
"bugs": {
"url": "https://github.com/dj0nny/svelte-express-boilerplate/issues"
},
"homepage": "https://github.com/dj0nny/svelte-express-boilerplate#readme",
"dependencies": {
"body-parser": "^1.20.1",
"concurrently": "^7.5.0",
"cors": "^2.8.5",
"express": "^4.18.2"
},
"devDependencies": {
"nodemon": "^2.0.20"
}
}