forked from druv5319/Sneaks-API
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.34 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "sneaks-api",
"version": "1.1.1",
"description": "A RESTful API that collects and returns data on sneakers. This API will also find, compare and return a link of where to buy the sneaker based on the price.",
"main": "index.js",
"scripts": {
"test": "mocha ./**/__test__/*.test.js --timeout 5000 --parallel=true",
"start": "node index.js",
"start:development": "nodemon index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/druv5319/Sneaks-API.git"
},
"keywords": [
"sneakers",
"shoes",
"goat",
"stadium goods",
"flight club",
"stockx",
"restful",
"api",
"nodejs"
],
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/druv5319/Sneaks-API/issues"
},
"homepage": "https://github.com/druv5319/Sneaks-API#readme",
"dependencies": {
"axios": "^0.19.2",
"cheerio": "^1.0.0-rc.3",
"chromedriver": "^103.0.0",
"core-util-is": "^1.0.2",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"got": "^11.6.0",
"mockery": "^2.1.0",
"mongoose": "^5.10.3",
"request": "^2.88.2",
"selenium-webdriver": "^4.4.0"
},
"devDependencies": {
"axios-mock-adapter": "^1.20.0",
"chai": "^4.3.6",
"mocha": "^9.2.2",
"nodemon": "^2.0.15",
"sinon": "^13.0.2"
}
}