-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
84 lines (84 loc) · 2.38 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "spotify-now-playing-on-github",
"version": "1.0.0",
"description": "Update your GitHub user status with what you're listening to on Spotify!",
"main": "index.js",
"repository": "https://github.com/flotwig/spotify-now-playing-on-github",
"author": "Zach Bloomquist <[email protected]>",
"license": "MIT",
"private": false,
"scripts": {
"be:watch": "ts-node-dev --respawn --transpileOnly src/index.ts",
"fe:watch": "parcel watch ./src/frontend/index.html",
"build": "parcel build ./src/frontend/index.html",
"start": "ts-node ./src/index.ts",
"watch": "yarn fe:watch & yarn be:watch",
"lint": "eslint ./src --ext .ts,.tsx",
"task:watch": "ts-node-dev --respawn --transpileOnly src/task/index.ts"
},
"devDependencies": {
"@types/bluebird": "^3.5.30",
"@types/cookie": "^0.3.3",
"@types/express": "^4.17.3",
"@types/express-session": "^1.17.0",
"@types/lodash": "^4.14.149",
"@types/node": "^13.11.0",
"@types/react": "^16.9.27",
"@types/react-dom": "^16.9.5",
"@types/validator": "^12.0.1",
"@typescript-eslint/eslint-plugin": "^2.26.0",
"@typescript-eslint/parser": "^2.26.0",
"eslint": "^6.8.0",
"parcel": "^1.12.4",
"sass": "^1.26.3",
"ts-node": "^8.8.2",
"ts-node-dev": "^1.0.0-pre.44",
"typescript": "^3.8.3"
},
"dependencies": {
"axios": "^0.21.1",
"body-parser": "^1.19.0",
"cookie": "^0.4.0",
"express": "^4.17.1",
"express-session": "^1.17.0",
"lodash": "^4.17.21",
"pg": "^8.0.0",
"react": "^16.13.1",
"react-bootstrap": "^1.0.0",
"react-dom": "^16.13.1",
"react-github-btn": "^1.2.0",
"sequelize": "^5.21.6"
},
"eslintConfig": {
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 2018,
"sourceType": "module"
},
"plugins": [
"@typescript-eslint"
],
"env": {
"browser": true,
"node": true,
"es6": true
},
"rules": {
"@typescript-eslint/explicit-function-return-type": "off",
"@typescript-eslint/camelcase": "off",
"@typescript-eslint/ban-ts-ignore": "off",
"@typescript-eslint/member-delimiter-style": [
"error",
{
"multiline": {
"delimiter": "none"
}
}
]
},
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended"
]
}
}