forked from franleplant/fund-bonds
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (37 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
{
"name": "bonds",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "concurrently --names \"client,server\" --prefix-colors \"bgBlue.bold,bgMagenta.bold\" \"npm run client:start\" \"npm run server:start\"",
"server:start": "nodemon src/index.js",
"client:start": "cd ./client && yarn start",
"client:install": "cd ./client && yarn",
"client:build": "cd ./client && yarn run build",
"start:prod": "npm run client:install && npm run client:build && npm run server:start",
"format": "prettier --write \"./src/**.js\" \"./client/src/**.{js,jsx}\""
},
"nodemonConfig": {
"ignore": ["client/*"]
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"body-parser": "1.18.3",
"cache": "2.1.0",
"cookie-parser": "1.4.3",
"express": "4.16.3",
"morgan": "1.9.0",
"node-fetch": "2.1.2",
"serve-favicon": "2.5.0",
"xlsx": "0.13.1"
},
"devDependencies": {
"concurrently": "3.6.0",
"nodemon": "1.17.5",
"prettier": "1.13.6"
}
}