-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
61 lines (61 loc) · 1.76 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
54
55
56
57
58
59
60
61
{
"name": "democratic-spotify-playlist",
"version": "1.0.0",
"description": "Reorders Collaborative Playlist Democratically",
"main": "src/index.js",
"scripts": {
"test": "jest --detectOpenHandles --coverage --forceExit",
"startLocal": "node -r dotenv/config src/server.js",
"start": "node src/server.js",
"debug": "node --inspect src/server.js",
"debugTest": "node --inspect-brk node_modules/jest/bin/jest.js --runInBand",
"testWatch": "jest --watch --verbose=true",
"mutation": "stryker run"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mgkramar/democratic-spotify-playlist.git"
},
"keywords": [
"spotify",
"democratic"
],
"author": "Yuri Vaz",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/mgkramar/democratic-spotify-playlist/issues"
},
"homepage": "https://github.com/mgkramar/democratic-spotify-playlist#readme",
"dependencies": {
"async-lock": "^1.3.1",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"express": "^4.17.1",
"express-async-handler": "^1.1.4",
"express-query-boolean": "^2.0.0",
"nanoid": "^3.1.22",
"spotify-web-api-node": "^5.0.2"
},
"devDependencies": {
"@stryker-mutator/core": "^4.5.1",
"dotenv": "^8.2.0",
"eslint": "^8.15.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.5.0",
"jest": "^26.6.3",
"supertest": "^6.1.3"
},
"jest": {
"testEnvironment": "node",
"coveragePathIgnorePatterns": [
"/node_modules/",
".fixture.js",
".mock.js"
]
}
}