-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.34 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
47
48
49
50
51
52
53
{
"name": "react-pkg-template",
"version": "2.1.0",
"description": "A template for fast development NPM packages contains ReactJS component",
"main": "dist/index.js",
"scripts": {
"storybook": "start-storybook --ci -p 9001 -c .storybook",
"test": "jest",
"test-verbose": "jest --verbose",
"test-coverage": "jest --coverage",
"build": "rm -rf ./dist && tsc --build",
"prettier": "./node_modules/prettier/bin-prettier.js --write ./src"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"keywords": [
"npm package",
"typescript",
"boilerplate",
"template",
"reactjs"
],
"author": "NoFl3x",
"license": "MIT",
"typings": "./dist/index.d.ts",
"files": [
"dist/**/*"
],
"peerDependencies": {
"react": "^16.12.0"
},
"devDependencies": {
"@testing-library/react": "^10.0.2",
"@testing-library/jest-dom": "^5.4.0",
"@storybook/react": "^5.3.18",
"@commitlint/config-conventional": "^8.3.4",
"@types/jest": "^25.2.1",
"@types/node": "^13.11.0",
"awesome-typescript-loader": "^5.2.1",
"babel-loader": "^8.1.0",
"jest": "^25.2.7",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"ts-jest": "^25.3.1",
"typescript": "^3.8.3",
"commitlint": "^8.3.5",
"husky": "^4.2.5",
"prettier": "2.0.4"
}
}