-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
110 lines (110 loc) · 3.14 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
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
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "@crazyfactory/react-general-components",
"private": false,
"description": "General React Components",
"main": "lib/index.js",
"typings": "lib/index",
"scripts": {
"clean": "rimraf lib && rimraf .jest/cache",
"prebuild": "npm run clean -s",
"build": "tsc",
"test": "jest",
"lint": "eslint \"src/**/**.ts*\"",
"lint:fix": "npm run lint -s -- --fix",
"doc": "start-storybook -p 6060",
"doc:build": "build-storybook -o storybook",
"doc:publish": "node ./doc/publish.js",
"prepublish": "npm run clean && npm run build",
"genindex": "node ./genIndex.js"
},
"author": "Crazy Factory <[email protected]>",
"homepage": "https://github.com/crazyfactory/react-general-components",
"repository": {
"type": "git",
"url": "https://github.com/crazyfactory/react-general-components.git"
},
"bugs": {
"url": "https://github.com/crazyfactory/react-general-components/issues"
},
"keywords": [
"react",
"component",
"typescript"
],
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^8.2.0",
"@commitlint/config-conventional": "^8.2.0",
"@crazyfactory/tslint-rules": "^1.6.1",
"@storybook/addon-docs": "^5.3.0-alpha.3",
"@storybook/react": "^5.2.1",
"@types/enzyme": "^3.10.3",
"@types/jest": "^24.0.18",
"@types/prop-types": "^15.7.2",
"@types/react": "^16.9.2",
"@types/storybook__react": "^4.0.2",
"@typescript-eslint/eslint-plugin": "^2.3.0",
"@typescript-eslint/eslint-plugin-tslint": "^2.3.0",
"@typescript-eslint/parser": "^2.3.0",
"babel-core": "^6.26.3",
"babel-loader": "^8.0.6",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.14.0",
"eslint": "^6.5.1",
"husky": "^3.0.5",
"jest": "^24.9.0",
"jest-enzyme": "^7.1.1",
"react": "^16.9.0",
"react-docgen-typescript-loader": "^3.2.1",
"rimraf": "^3.0.0",
"ts-jest": "^24.1.0",
"ts-loader": "^6.1.2",
"tslint": "^5.20.0",
"tslint-microsoft-contrib": "^6.2.0",
"tslint-react": "^4.1.0",
"typescript": "^3.6.3"
},
"dependencies": {
"@crazyfactory/frontend-commons": "^2.0.1",
"@types/react-modal": "^3.8.3",
"@types/react-select": "^3.0.5",
"autobind-decorator": "^2.4.0",
"debounce": "^1.2.0",
"prop-types": "^15.7.2",
"react-modal": "^3.10.1",
"react-select": "^3.0.8",
"react-switch": "^4.0.1",
"typestyle": "^2.0.4"
},
"peerDependencies": {
"react": "^16.8.0"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"jest": {
"preset": "ts-jest",
"cacheDirectory": "<rootDir>/.jest/cache",
"collectCoverage": true,
"coverageDirectory": "<rootDir>/coverage",
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/__mocks__/fileMock.js"
},
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json"
],
"moduleDirectories": [
"node_modules",
"./"
],
"setupFilesAfterEnv": [
"./src/helpers/JestBootstrap.ts"
]
}
}