forked from taeyangk0331/Profile-Autogeneration-System
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.03 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.03 KB
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
{
"name": "GPGen",
"version": "0.0.1",
"private": true,
"description": "Automatically integrate your BOJ submissions to GitHub",
"scripts": {
"setup": "npm i",
"format": "prettier --write scripts/**.js",
"format-test": "prettier --check scripts/**.js",
"lint": "eslint scripts/**.js --fix",
"lint-test": "eslint scripts/**.js --color",
"test": "jest"
},
"devDependencies": {
"@babel/core": "^7.20.2",
"@babel/preset-env": "^7.20.2",
"eslint": "^7.2.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.0.0",
"jest": "^29.3.1",
"prettier": "^2.7.1"
},
"dependencies": {
"@octokit/core": "^4.1.0",
"github-calendar": "^2.3.1"
},
"jest": {
"globals": {
"__DEV__": true
}
},
"babel": {
"presets": [
"@babel/preset-env"
]
}
}