forked from WellsSA/jsexpert-challenge02-lifecycle-solution
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.39 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
{
"name": "challenge02-lifecycle",
"version": "1.1.0",
"description": "This is a code challenge where you are supposed to implement an API that returns a youtube or spotify playlist.",
"main": "index.js",
"type": "module",
"scripts": {
"api": "npx json-server --watch api/fake-api-server.json --port 3001",
"start": "node src/index.js",
"dev": "npx nodemon src/index.js",
"test": "node --experimental-vm-modules ./node_modules/jest/bin/jest.js --runInBand --watchAll --config ./jest.config.js",
"test:dev": "node --experimental-vm-modules ./node_modules/jest/bin/jest.js --runInBand --watchAll --config ./jest.config.js",
"test:cov": "node --experimental-vm-modules ./node_modules/jest/bin/jest.js --config ./jest.config.js --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ThaSMorato/jse-challenge-2.1.git"
},
"keywords": [
"Tests",
"Javascript",
"Code",
"Lifecycle",
"NodeJS",
"unit"
],
"author": "Thales Silva Morato (ThaSMorato)",
"license": "MIT",
"bugs": {
"url": "https://github.com/ThaSMorato/jse-challenge-2.1/issues"
},
"homepage": "https://github.com/ThaSMorato/jse-challenge-2.1#readme",
"dependencies": {
"moment": "^2.29.4"
},
"devDependencies": {
"jest": "^29.4.1",
"json-server": "^0.17.1",
"supertest": "^6.3.3"
},
"engines": {
"node" : "^18.13.0"
}
}