-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
36 lines (36 loc) · 1008 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
33
34
35
36
{
"name": "wethefoodies",
"version": "1.0.0",
"description": "[Team Page](admin/team.md)",
"main": "login.js",
"type": "module",
"scripts": {
"lint": "./node_modules/.bin/eslint --fix source --ext .js",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js tests/unit/*.js",
"e2e": "node --experimental-vm-modules node_modules/jest/bin/jest.js --runInBand tests/e2e/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/12DaysOfCoding/WeTheFoodies.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/12DaysOfCoding/WeTheFoodies.git/issues"
},
"homepage": "https://github.com/12DaysOfCoding/WeTheFoodies.git#readme",
"devDependencies": {
"eslint": "^8.1.0",
"jest": "^27.3.1",
"jest-puppeteer": "^6.0.0",
"node-fetch": "^3.2.5",
"puppeteer": "^11.0.0"
},
"jest": {
"verbose": true,
"preset": "jest-puppeteer"
},
"dependencies": {
"firebase": "^9.8.1"
}
}