forked from up-for-grabs/up-for-grabs.net
-
Notifications
You must be signed in to change notification settings - Fork 2
/
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.6.4",
"babel-jest": "^24.9.0",
"eslint": "^6.5.1",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "6.4.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^22.19.0",
"jest": "^24.9.0",
"jest-fetch-mock": "^2.1.2",
"jest-localstorage-mock": "^2.4.0",
"prettier": "^1.18.2",
"promise-polyfill": "^8.1.3",
"typescript": "^3.6.4",
"underscore": "^1.9.1",
"whatwg-fetch": "^3.0.0"
}
}