-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.08 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
{
"name": "spork",
"version": "2.16.1",
"description": "",
"type": "module",
"repository": {
"type": "git",
"url": "[email protected]:dev-academy-challenges/spork.git"
},
"bin": {
"spork": "bin.js",
"publish-challenges": "bin.js"
},
"main": "src/index.js",
"scripts": {
"test": "vitest",
"lint": "eslint src",
"format": "prettier -w src"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/node": "^18.6.3",
"@types/prettier": "^2.7.3",
"@vitest/coverage-v8": "^1.6.0",
"eslint": "^8.10.0",
"eslint-config-eda": "^1.1.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jest": "^26.1.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.28.0",
"prettier": "^2.5.1",
"typescript": "^5.1.3",
"vitest": "^1.6.0"
},
"eslintConfig": {
"extends": "eda"
},
"prettier": {
"semi": false,
"singleQuote": true
},
"dependencies": {
"dotenv": "^16.0.0",
"prettier": "^2.6.0"
}
}