forked from up-for-grabs/up-for-grabs.net
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 1.01 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
{
"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",
"lint": "eslint javascripts/*.js tests/**/*.js",
"prettier": "prettier --check javascripts/*.js tests/**/*.js docs/**/*.md",
"prettify": "prettier --write javascripts/*.js tests/**/*.js docs/**/*.md",
"test": "jest --config ./jest.config.js --verbose --coverage"
},
"dependencies": {
"amdefine": ">=0.1.0"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"babel-jest": "^24.9.0",
"eslint": "^6.2.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.18.2",
"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.5.3",
"underscore": "^1.9.1",
"whatwg-fetch": "^3.0.0"
}
}