-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.51 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.51 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
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "counter",
"version": "1.0.0",
"description": "A simple, complete ExpressJS app which counts upwards",
"main": "app.js",
"directories": {
"lib": "src"
},
"private": true,
"scripts": {
"start": "node ./src/app.js",
"devel": "nodemon ./src/app.js",
"linter": "jshint ./src ./tests ./scripts && eslint ./src ./tests ./scripts",
"test": "TEST=true CONSOLE=true NODE_ENV=mocha_sqlite PORT=8851 DEBUG=true mocha tests --exit",
"test_pg": "NODE_ENV=mocha knex migrate:latest && TEST=true CONSOLE=true NODE_ENV=mocha PORT=8851 DEBUG=true mocha tests --exit",
"coverage": "TEST=true CONSOLE=true NODE_ENV=mocha_sqlite PORT=8851 DEBUG=true nyc npm run test --exit",
"latte": "sh ./scripts/latte.sh",
"migrate": "knex migrate:latest",
"cleardb": "node ./scripts/clear-database.sh"
},
"repository": {
"type": "git",
"url": "https://github.com/MorganEPatch/Counter.git"
},
"license": "MIT",
"homepage": "https://counter.morganepatch.dev/",
"author": "Morgan Patch <me@morganepatch.dev>",
"jsHintConfig": ".jshintrc",
"dependencies": {
"body-parser": "~1.19.0",
"cors": "~2.8.5",
"express": "~4.17.1",
"helmet": "~4.1.1",
"knex": "~0.21.5",
"pg": "~8.3.3",
"sqlite3": "^5.0.0"
},
"devDependencies": {
"axios": "^0.20.0",
"chai": "~4.2.0",
"eslint": "~7.8.1",
"jshint": "~2.12.0",
"mocha": "~8.1.3",
"morganepatch-style": "~1.0.1",
"nodemon": "~2.0.4",
"nyc": "~15.1.0",
"sql-fixtures": "~1.0.4"
}
}