-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 757 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 757 Bytes
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
{
"name": "coding_challenge",
"version": "1.0.0",
"description": "Coding challenge for application",
"main": "index.js",
"scripts": {
"postinstall": "npm install --prefix ./server && npm install --prefix ./client",
"server": "node ./server/express_server",
"client": "npm start --prefix './client/'",
"test": "npm run test --prefix './client/'"
},
"author": "Jake Nolder",
"license": "ISC",
"devDependencies": {},
"dependencies": {},
"repository": {
"type": "git",
"url": "git+https://github.com/Jake-Nolder/coding_challenge.git"
},
"keywords": [],
"bugs": {
"url": "https://github.com/Jake-Nolder/coding_challenge/issues"
},
"homepage": "https://github.com/Jake-Nolder/coding_challenge#readme"
}