forked from makersacademy/frontend-api-challenge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
27 lines (27 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
{
"dependencies": {
"esbuild": "^0.14.42",
"jest": "^28.1.0",
"jest-environment-jsdom": "^28.1.0",
"jest-fetch-mock": "^3.0.3"
},
"name": "frontend-api-challenge",
"description": "* Feel free to use Google, your notes, books, etc. but work on your own * If you refer to the solution of another coach or student, please put a link to that in your README * If you have a partial solution, **still check in a partial solution** * You must submit a pull request to this repo with your code by 9am Monday morning",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"test": "jest",
"build": "esbuild index.js --bundle --outfile=bundle.js --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lukestorey95/frontend-api-challenge.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/lukestorey95/frontend-api-challenge/issues"
},
"homepage": "https://github.com/lukestorey95/frontend-api-challenge#readme"
}