-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.19 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
{
"name": "@opencreek/provider-stack",
"version": "0.3.1",
"description": "",
"main": "build/index.js",
"files": [
"build/**",
"src/**"
],
"scripts": {
"test": "true",
"lint": "prettier --check . && eslint --cache --max-warnings=0 .",
"lint:fix": "prettier --write . && eslint --cache --max-warnings=0 --fix .",
"build": "tsc"
},
"author": "Opencreek Technology<[email protected]>",
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"repository": "https://github.com/opencreek/provider-stack",
"license": "MIT",
"devDependencies": {
"@auto-it/all-contributors": "^10.32.2",
"@auto-it/first-time-contributor": "^10.32.2",
"@types/react": "^17.0.34",
"@typescript-eslint/eslint-plugin": "^5.3.1",
"@typescript-eslint/parser": "^5.3.1",
"auto": "^10.32.2",
"eslint": "^8.2.0",
"eslint-config-prettier": "^8.3.0",
"prettier": "^2.4.1",
"typescript": "^4.4.4"
},
"peer": {
"react": "^17.0.0"
},
"prettier": {
"semi": false,
"tabWidth": 4
}
}