-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 1.18 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
{
"name": "@actually-colab/editor",
"version": "1.0.0",
"description": "The REST and WebSocket API for Actually Colab.",
"repository": "https://github.com/actually-colab/editor",
"author": "Bailey Tincher <bailey@actuallycolab.org>",
"license": "SEE LICENSE IN ./LICENSE",
"private": false,
"scripts": {
"lint": "eslint --ext .ts,.js --fix .",
"format": "prettier --write \"**/*.{ts,js,json,yml,md}\"",
"ci:lint": "eslint --ext .ts,.js .",
"ci:format": "prettier -c \"**/*.{ts,js,json,yml,md}\"",
"postinstall": "husky install"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.11.0",
"@typescript-eslint/parser": "^4.11.0",
"eslint": "^7.10.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-jest": "^24.3.4",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^6.0.0",
"lint-staged": "^10.5.4",
"prettier": "https://github.com/prettier/prettier",
"ts-node": "^9.1.1",
"typescript": "^4.3.2"
},
"lint-staged": {
"**/*.ts": [
"eslint --ext .ts,.js --fix"
],
"**/*.js": [
"eslint --ext .ts,.js --fix"
],
"*": [
"prettier --no-error-on-unmatched-pattern --write"
]
}
}