-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.18 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
{
"name": "zid-be-project-grub-dash-01-qualified",
"version": "1.0.0",
"description": "",
"repository": {
"type": "git",
"url": "https://github.com/Thinkful-Ed/web-dev-programs",
"directory": "/library/zid-be-robust-server-structure-XX-assignment/solution"
},
"main": "src/server.js",
"scripts": {
"docker:build": "docker image build . -t thinkful-ed/zid-be-project-grub-dash-01-qualified",
"docker:run": "docker run --rm -it -p 5000:5000 thinkful-ed/zid-be-project-grub-dash-01-qualified",
"docker:stop": "docker stop $(docker ps -q)",
"docker:test": "docker run -t thinkful-ed/zid-be-project-grub-dash-01-qualified npm test",
"start": "node src/server.js",
"start:dev": "nodemon src/server.js",
"start:solution": "npm run -it docker:build && npm run docker:run",
"test": "jest",
"test:solution": "npm run docker:build && npm run docker:test",
"test:watch": "jest --watch"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"cors": "^2.8.5",
"cross-conf-env": "^1.2.1",
"express": "^4.17.1"
},
"devDependencies": {
"jest": "^26.4.2",
"nodemon": "^2.0.4",
"supertest": "^5.0.0"
}
}