-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
120 lines (120 loc) · 3.29 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
111
112
113
114
115
116
117
118
119
120
{
"name": "liw-components",
"version": "2.3.46",
"description": "Altiore React Components - Life Is Wonderful",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/altiore/react-components.git"
},
"author": "Altiore <[email protected]> (https://altiore.org)",
"license": "MIT",
"types": "index.d.ts",
"scripts": {
"start": "start-storybook -p 9002",
"new:version": "npm version patch && npm publish && git push origin master && git push --tags",
"build": "tsc --p tsconfig.prod.json && copyfiles -u 1 @src/**/*.scss . && node @scripts/replaseString.js",
"prepublish": "npm run build",
"story-static": "build-storybook -o build"
},
"devDependencies": {
"@storybook/addon-actions": "3.4.7",
"@storybook/addon-info": "3.4.7",
"@storybook/react": "3.4.7",
"@types/classnames": "2.2.4",
"@types/jest": "23.0.0",
"@types/node": "10.3.2",
"@types/react": "16.3.17",
"@types/react-css-modules": "4.6.1",
"@types/react-dom": "16.0.6",
"@types/react-redux": "6.0.2",
"@types/react-select": "^2.0.6",
"@types/redux": "3.6.0",
"@types/redux-form": "^7.4.11",
"@types/storybook__react": "3.0.7",
"autoprefixer": "8.6.2",
"classnames": "2.2.6",
"copyfiles": "2.0.0",
"css-loader": "0.28.11",
"faker": "^4.1.0",
"fork-ts-checker-webpack-plugin": "0.4.2",
"husky": "1.1.2",
"jest": "23.1.0",
"lint-staged": "8.0.4",
"moment": "^2.22.2",
"node-sass": "4.11.0",
"postcss-flexbugs-fixes": "3.3.1",
"postcss-loader": "2.1.5",
"prettier": "1.14.3",
"react": "^16.7.0",
"react-css-modules": "^4.7.9",
"react-docgen-typescript-webpack-plugin": "1.1.0",
"react-dom": "^16.7.0",
"react-icons": "^3.2.2",
"react-redux": "5.0.7",
"react-select": "^2.1.1",
"redux": "4.0.0",
"redux-form": "^7.4.2",
"redux-form-validators": "^2.7.2",
"resolve-url-loader": "2.3.0",
"rimraf": "2.6.2",
"sass-loader": "7.0.3",
"semantic-release": "15.5.2",
"style-loader": "0.21.0",
"ts-jest": "22.4.6",
"ts-loader": "3.5.0",
"tslint": "5.10.0",
"tslint-config-prettier": "1.13.0",
"tslint-react": "3.6.0",
"typescript": "3.1.3"
},
"dependencies": {
"ts-keycode-enum": "^1.0.6"
},
"peerDependencies": {
"classnames": "^2.x.x | ^3.x.x",
"moment": "^2.22.2",
"ts-keycode-enum": "^1.0.6",
"react": "^16.x.x",
"react-css-modules": "^4.x.x | ^5.x.x",
"react-dom": "^16.x.x",
"react-icons": "^3.x.x",
"react-redux": "^5.x.x | ^6.x.x",
"react-select": "^2.1.1",
"redux-form": "^7.x.x | ^8.x.x"
},
"jest": {
"transform": {
".(ts|tsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"mapCoverage": true,
"testPathIgnorePatterns": [
"/node_modules/",
"/lib/"
],
"testRegex": "(.*|\\.(test|spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"linters": {
"@src/**/*.{ts,tsx}": [
"prettier --write --print-width 120 --single-quote --parser typescript",
"git add"
],
"*.{json,md}": [
"prettier --write",
"git add"
]
}
}
}