forked from up-for-grabs/up-for-grabs.net
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.27 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
{
"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"
},
"dependencies": {
"amdefine": ">=0.1.0"
},
"devDependencies": {
"@babel/core": "^7.12.3",
"babel-jest": "^26.6.3",
"eslint": "7.13.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "6.15.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.0",
"jest": "^26.6.1",
"jest-fetch-mock": "^3.0.3",
"jest-localstorage-mock": "^2.4.3",
"prettier": "^2.1.2",
"promise-polyfill": "^8.2.0",
"typescript": "^4.0.5",
"underscore": "^1.11.0",
"whatwg-fetch": "^3.4.1"
}
}