forked from mpsq/arewewaylandyet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.13 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": "arewewaylandyet.get",
"version": "0.0.1",
"license": "MIT",
"scripts": {
"ci:lint": "eslint 'src/**/*.ts' --max-warnings=0",
"ci:type-check": "tsc --noEmit",
"type-check:watch": "npm run ci:type-check -- --watch"
},
"dependencies": {
"typescript": "4.0.5"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "4.6.1",
"@typescript-eslint/parser": "4.6.1",
"eslint": "7.13.0",
"eslint-config-prettier": "6.15.0",
"eslint-config-standard": "16.0.1",
"eslint-config-standard-with-typescript": "19.0.1",
"eslint-import-resolver-typescript": "2.3.0",
"eslint-plugin-babel": "5.3.1",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "3.1.4",
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-standard": "4.0.2",
"husky": "4.3.0",
"lint-staged": "10.5.1",
"prettier": "2.1.2"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}