-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 3.2 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 3.2 KB
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "tpl-lib-react-ts",
"version": "0.0.1",
"description": "React with Typescript template",
"license": "BSD-3-Clause",
"homepage": "https://github.com/andreidmt/tpl-lib-react-ts",
"repository": {
"type": "git",
"url": "git+https://github.com/andreidmt/tpl-lib-react-ts.git"
},
"bugs": {
"url": "https://github.com/andreidmt/tpl-lib-react-ts/issues"
},
"author": {
"name": "Andrei Dumitrescu",
"url": "https://github.com/andreidmt"
},
"keywords": [
"react",
"typescript",
"template"
],
"main": "dist/index.js",
"files": [
"/dist"
],
"scripts": {
"----UTIL": "",
"prepare": "git config --local core.hooksPath .githook",
"setup": "npm ci --also=dev",
"update": "npm-check --update",
"postupdate": "npm audit fix",
"----BUNDLE": "",
"build.transpile": "babel src --out-dir dist --extensions '.ts,.tsx'",
"build.types": "tsc --declaration --emitDeclarationOnly",
"build": "npm run build:transpile && npm run build:types",
"----TEST": "",
"pretest": "npm run build",
"test": "tape 'src/*.test.js' 'src/**/*.test.js' | tap-nirvana",
"tdd": "nodemon --watch src --exec 'npm test'",
"coverage": "nyc npm run test && nyc report --reporter=text-lcov | coveralls",
"----LINT": "",
"lint:ts": "tsc --pretty --noEmit",
"lint:js": "eslint --quiet src",
"lint:js-staged": "eslint --quiet",
"lint:md": "markdownlint '*.md'",
"lint:md-staged": "markdownlint",
"lint": "npm run lint:ts && npm run lint:js && npm run lint:md",
"----PUBLISH": "",
"publish": "semantic-release"
},
"devDependencies": {
"@asd14/eslint-config": "^5.34.0",
"@babel/cli": "^7.13.16",
"@babel/core": "^7.13.16",
"@babel/eslint-parser": "^7.13.10",
"@babel/plugin-transform-react-constant-elements": "^7.13.13",
"@babel/plugin-transform-react-display-name": "^7.12.13",
"@babel/plugin-transform-runtime": "^7.13.10",
"@babel/preset-env": "^7.13.12",
"@babel/preset-react": "^7.13.13",
"@babel/preset-typescript": "^7.13.0",
"@babel/register": "^7.13.16",
"@commitlint/cli": "^12.1.1",
"@commitlint/config-conventional": "^12.1.1",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"babel-plugin-jsx-remove-data-test-id": "^3.0.0",
"coveralls": "^3.1.0",
"eslint": "^7.25.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-html": "^6.1.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsdoc": "^34.0.1",
"eslint-plugin-json": "^3.0.0",
"eslint-plugin-no-inferred-method-name": "^2.0.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-unicorn": "^32.0.1",
"lint-staged": "^11.0.0",
"markdownlint-cli": "^0.27.1",
"nodemon": "^2.0.7",
"npm-check": "^5.9.2",
"nyc": "^15.1.0",
"prettier": "^2.2.1",
"pretty-error": "^3.0.3",
"riteway": "^6.2.1",
"semantic-release": "^17.4.2",
"tap-nirvana": "^1.1.0",
"tape": "^5.2.2",
"typescript": "^4.2.4"
}
}