-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
83 lines (83 loc) · 2.51 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
{
"name": "pulldasher",
"version": "0.0.1",
"description": "Simple pull request dashboard",
"dependencies": {
"@chakra-ui/react": "^1.8.6",
"@emotion/react": "^11.8.1",
"@emotion/styled": "^11.8.1",
"@fortawesome/fontawesome-svg-core": "^6.1.1",
"@fortawesome/free-solid-svg-icons": "^6.0.0",
"@fortawesome/react-fontawesome": "^0.1.17",
"@octokit/plugin-throttling": "^3.4.1",
"@octokit/rest": "^19.0.7",
"@types/underscore": "^1.10.24",
"bluebird": "^3.7.1",
"body-parser": "^1.19.0",
"debug": "^4.3.4",
"express": "^4.21.2",
"express-session": "^1.18.1",
"framer-motion": "^4.1.17",
"lodash-es": "^4.17.21",
"mysql2": "^3.11.0",
"notify-queue": "0.0.5",
"passport": "^0.6.0",
"passport-github2": "^0.1.12",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-hotkeys-hook": "^3.4.4",
"socket.io": "^4.8.0",
"socket.io-client": "^4.7.5",
"underscore": "^1.12.1"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@babel/preset-react": "^7.12.10",
"@types/lodash-es": "^4.17.6",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@typescript-eslint/eslint-plugin": "^5.2.0",
"@typescript-eslint/parser": "^5.2.0",
"babel-loader": "^8.2.3",
"css-loader": "^6.7.1",
"eslint": "^8.12.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-react": "^7.29.4",
"eslint-webpack-plugin": "^3.1.1",
"html-webpack-plugin": "^5.5.0",
"husky": "^7.0.4",
"less": "^4.1.2",
"less-loader": "^10.2.0",
"lint-staged": "^12.3.7",
"prettier": "2.7.1",
"style-loader": "^3.3.1",
"ts-loader": "^9.2.8",
"typescript": "^4.1.3",
"webpack": "5.94",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.7.4"
},
"scripts": {
"start": "node app.js",
"debug": "node inspect app.js",
"lint": "eslint ./",
"frontend:start": "DUMMY_USER=danielbeardsley DUMMY_PULLS=./frontend/dummy-pulls.json webpack-dev-server --config ./frontend/webpack.dev.config.js",
"frontend:watch": "webpack --watch --config ./frontend/webpack.dev.config.js",
"postinstall": "npm run build",
"build": "webpack --config ./frontend/webpack.prod.config.js",
"precommit": "lint-staged"
},
"lint-staged": {
"*.(js|jsx|ts|tsx)": [
"eslint --fix"
]
},
"eslintIgnore": [
"dist/bundle.js"
],
"main": "app.js",
"repository": "[email protected]:ifixit/pulldasher.git",
"author": "iFixit",
"license": "MIT"
}