forked from up-for-grabs/up-for-grabs.net
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.67 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
{
"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": ">=16",
"npm": ">=7"
},
"dependencies": {
"amdefine": ">=0.1.0"
},
"devDependencies": {
"@babel/core": "^7.18.5",
"@types/jest": "^28.1.4",
"@babel/core": "^7.20.2",
"@types/jest": "^29.2.2",
"@types/underscore": "^1.11.4",
"@types/showdown": "^2.0.0",
"@types/node": "^16",
"babel-jest": "^28.1.2",
"@types/node": "^18",
"babel-jest": "^29.3.1",
"eslint": "^8.27.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.1.5",
"jest": "^28.1.2",
"jest-environment-jsdom": "^28.1.1",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"jest-fetch-mock": "^3.0.3",
"jest-localstorage-mock": "^2.4.22",
"prettier": "^2.7.1",
"promise-polyfill": "^8.2.3",
"typescript": "^4.8.4",
"underscore": "^1.13.6",
"whatwg-fetch": "^3.6.2"
}
}