-
Notifications
You must be signed in to change notification settings - Fork 86
/
package.json
61 lines (61 loc) · 1.57 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": "spotify-profile",
"version": "0.1.0",
"description": "Spotify Profile",
"main": "server/index.js",
"repository": {
"type": "git",
"url": "https://github.com/bchiang7/spotify-profile.git"
},
"keywords": [],
"author": "Brittany Chiang <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/bchiang7/spotify-profile/issues"
},
"homepage": "https://github.com/bchiang7/spotify-profile#readme",
"engines": {
"node": "10.13.0"
},
"scripts": {
"client:install": "cd client && yarn",
"client": "cd client && yarn start",
"server": "node server",
"dev": "concurrently --kill-others-on-fail \"yarn server\" \"yarn client\"",
"start": "node server",
"heroku-postbuild": "cd client/ && yarn && yarn install --production && yarn build"
},
"lint-staged": {
"*.{js,css,json,md}": [
"prettier --write"
],
"*.{js}": [
"eslint --fix"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"dependencies": {
"connect-history-api-fallback": "^1.6.0",
"cookie-parser": "1.4.4",
"cors": "^2.8.5",
"dotenv": "^8.1.0",
"express": "~4.17.1",
"querystring": "~0.2.0",
"request": "~2.88.0"
},
"devDependencies": {
"@upstatement/eslint-config": "^0.4.3",
"@upstatement/prettier-config": "^0.3.0",
"concurrently": "^5.1.0",
"eslint-config-prettier": "^6.3.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.14.3",
"husky": "^4.2.3",
"lint-staged": "^10.1.1",
"prettier": "^2.0.2"
}
}