-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 985 Bytes
/
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
{
"name": "poke-project",
"version": "0.0.1",
"description": "",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"client": "npm start --prefix client",
"server": "nodemon server.js",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"start": "node server.js",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false npm config set @bit:registry https://node.bit.dev --prefix client && npm install --prefix client && npm run build --prefix client"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AlexLLKong/poke-project.git"
},
"author": "Alex Kong",
"license": "ISC",
"bugs": {
"url": "https://github.com/AlexLLKong/poke-project/issues"
},
"homepage": "https://github.com/AlexLLKong/poke-project#readme",
"dependencies": {
"dotenv": "^8.2.0",
"express": "^4.17.1",
"winston": "^3.3.3"
},
"type": "module",
"devDependencies": {
"concurrently": "^5.3.0",
"nodemon": "^2.0.6"
}
}