-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
45 lines (45 loc) · 1.47 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
{
"name": "better-spotify",
"version": "1.0.0",
"description": "bootstrapped the MERN stack project with the help of this docs:\r https://www.digitalocean.com/community/tutorials/getting-started-with-the-mern-stack",
"main": "index.js",
"scripts": {
"test": "jest",
"setup": "npm i && cd backend && npm i && cd ../frontend && npm i",
"start": "npx concurrently \"npm:start:frontend\" \"npm:start:backend\"",
"start:frontend": "cd frontend && npm start",
"start:backend": "cd backend && npm start",
"heroku-postbuild": "cd frontend && npm install && npm run build && cd ../backend && npm install && tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jakepanter/better-spotify.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/jakepanter/better-spotify/issues"
},
"homepage": "https://github.com/jakepanter/better-spotify#readme",
"devDependencies": {
"@types/jest": "^27.0.2",
"@typescript-eslint/eslint-plugin": "^5.2.0",
"@typescript-eslint/parser": "^5.2.0",
"concurrently": "^6.3.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.26.1",
"eslint-plugin-react-hooks": "^4.2.0",
"jest": "^27.3.1",
"ts-jest": "^27.0.7"
},
"dependencies": {
"react-table": "^7.7.0",
"typescript": "^4.4.4"
},
"engines": {
"node": "v12.18.3"
}
}