-
Notifications
You must be signed in to change notification settings - Fork 2.1k
/
package.json
46 lines (46 loc) · 1.48 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
{
"name": "up-for-grabs.net",
"version": "1.0.0",
"main": "index.js",
"description": "Tooling for up-for-grabs.net development",
"repository": "https://github.com/up-for-grabs/up-for-grabs.net",
"license": "MIT",
"scripts": {
"check": "tsc",
"eslint-check": "eslint --print-config javascripts/main.js | eslint-config-prettier-check",
"lint": "eslint javascripts/*.js tests/**/*.js",
"lint-fix": "eslint --fix javascripts/*.js tests/**/*.js",
"prettier": "prettier --check javascripts/*.js tests/**/*.js docs/**/*.md .github/**/*.md",
"prettier-fix": "prettier --write javascripts/*.js tests/**/*.js docs/**/*.md .github/**/*.md",
"test": "jest --config ./jest.config.js --verbose --coverage"
},
"engines": {
"node": ">=20",
"npm": ">=9"
},
"dependencies": {
"amdefine": ">=0.1.0"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.13.0",
"@types/jest": "^29.5.14",
"@types/node": "^22",
"@types/showdown": "^2.0.6",
"@types/underscore": "^1.13.0",
"babel-jest": "^29.7.0",
"eslint": "^9.13.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^28.8.3",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-fetch-mock": "^3.0.3",
"jest-localstorage-mock": "^2.4.26",
"prettier": "^3.3.3",
"promise-polyfill": "^8.3.0",
"typescript": "^5.6.3",
"underscore": "^1.13.7",
"whatwg-fetch": "^3.6.20"
}
}