-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.01 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": "race-time-keeper-version-2",
"version": "1.0.0",
"description": "An app to keep track of times for a variety of races.",
"main": "app/index.js",
"scripts": {
"test": "mocha --exit ./**/*.js",
"live": "nodemon .",
"start": "node .",
"debug": "nodemon --inspect=0.0.0.0:9229 main/index.js"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/CallumGilly/race-time-keeper-version-2.git"
},
"keywords": [
"MYSQL",
"Time",
"JSON",
"Express"
],
"author": "Callum Gilchrist <[email protected]> (https://callumgilly.github.io/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/CallumGilly/race-time-keeper-version-2/issues"
},
"homepage": "https://github.com/CallumGilly/race-time-keeper-version-2#readme",
"dependencies": {
"body-parser": "^1.19.0",
"express": "^4.17.1",
"nodemon": "^2.0.7"
},
"devDependencies": {
"mocha": "^8.3.2",
"should": "^13.2.3",
"supertest": "^6.1.3"
}
}