-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 901 Bytes
/
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
{
"name": "authentication-and-testing",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"start": "node index.js",
"server": "nodemon index.js",
"migrate": "knex migrate:latest",
"test": "cross-env NODE_ENV=testing jest api/server.test.js --watchAll --verbose --runInBand",
"codegrade": "cross-env NODE_ENV=testing jest project.test.js --watchAll --verbose --runInBand"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LambdaSchool/web-sprint-challenge-authentication-and-testing.git"
},
"license": "ISC",
"dependencies": {
"cors": "^2.8.5",
"express": "^4.17.1",
"helmet": "^4.2.0",
"knex": "^0.21.13",
"sqlite3": "^5.0.0"
},
"devDependencies": {
"@types/jest": "^26.0.19",
"cross-env": "^7.0.3",
"eslint": "^7.15.0",
"jest": "^26.6.3",
"nodemon": "^2.0.6",
"supertest": "^6.0.1"
}
}