-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.08 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.08 KB
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
{
"name": "netbrary",
"version": "1.0.0",
"description": "Library for shows on the net.",
"main": "server.js",
"scripts": {
"client-install": "npm install --prefix client",
"start": "node server.js",
"server": "nodemon server.js",
"client": "npm start --prefix client",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"test": "export NODE_ENV=test && jasmine",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false npm install --prefix client && npm run build --prefix client"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wolffles/Netbrary.git"
},
"author": "Wolfgang Truong (http://github.com/wolffles)",
"license": "MIT",
"bugs": {
"url": "https://github.com/wolffles/Netbrary/issues"
},
"homepage": "https://github.com/wolffles/Netbrary#readme",
"dependencies": {
"axios": "^1.6.2",
"classnames": "2.2.6",
"concurrently": "^8.2.2",
"express": "^4.18.2",
"validator": "^13.11.0"
},
"devDependencies": {
"jasmine": "3.3.1",
"nodemon": "^3.0.2",
"request": "2.88.0"
}
}