-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.1 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
44
45
46
{
"$schema": "http://json.schemastore.org/package",
"name": "ama",
"version": "0.1.0",
"scripts": {
"lint": "pnpm recursive run lint",
"lint:ci": "pnpm run --parallel lint",
"build": "pnpm recursive run build",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/WhyAydan/AMA.git"
},
"devDependencies": {
"@babel/core": "^7.14.6",
"@babel/preset-env": "^7.14.7",
"@babel/preset-typescript": "^7.14.5",
"@types/jest": "^26.0.23",
"@typescript-eslint/eslint-plugin": "^4.28.1",
"@typescript-eslint/parser": "^4.28.1",
"babel-jest": "^26.6.3",
"babel-plugin-const-enum": "^1.1.0",
"babel-plugin-replace-ts-export-assignment": "^0.0.2",
"eslint": "^7.30.0",
"eslint-config-marine": "^8.3.2",
"eslint-plugin-import": "^2.23.4",
"husky": "^4.3.8",
"jest": "^26.6.3",
"lint-staged": "^10.5.4",
"typescript": "^4.3.5"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.ts": [
"eslint --fix"
],
"*.tsx": [
"eslint --fix"
]
}
}