forked from up-for-grabs/up-for-grabs.net
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
29 lines (29 loc) · 874 Bytes
/
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
{
"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"
},
"dependencies": {
"amdefine": ">=0.1.0"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"babel-jest": "^24.1.0",
"eslint": "^5.12.1",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.15.0",
"jest": "^23.6.0",
"prettier": "^1.16.1",
"typescript": "^3.2.4",
"underscore": "^1.9.1"
}
}