-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
43 lines (43 loc) · 1.21 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
{
"name": "discourse-codebytes-plugin",
"private": true,
"version": "1.0.0",
"description": "Codecademy CodeBytes integration for Discourse",
"main": "index.js",
"scripts": {
"lint": "eslint --ignore-path .eslintignore \"./assets/javascripts/**/*.js.es6\"",
"lint:fix": "yarn lint --fix",
"prettier": "prettier --ignore-path .eslintignore \"./assets/javascripts/**/*.js.es6\"",
"prettier:verify": "yarn prettier --list-different",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/codecademy-engineering/discourse-codebytes-plugin.git"
},
"author": "Codecademy Engineers <[email protected]>",
"license": "MIT",
"devDependencies": {
"@babel/preset-env": "^7.14.2",
"@codecademy/eslint-config": "^4.0.0",
"@codecademy/prettier-config": "^0.1.6",
"babel-jest": "^26.6.3",
"eslint": "^7.19.0",
"eslint-config-airbnb": "^18.2.1",
"jest": "^26.6.3",
"husky": "^4.3.8",
"lint-staged": "^10.5.4",
"prettier": "^2.2.1"
},
"lint-staged": {
"./assets/javascripts/**/*.js.es6": [
"eslint-fix",
"yarn prettier --write"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}