-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
125 lines (125 loc) · 3.55 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
121
122
123
124
125
{
"name": "@volst/ui-components",
"version": "0.20.0",
"license": "ISC",
"author": "Kees Kluskens <[email protected]>",
"description": "React component library for Volst",
"module": "dist/es/index.js",
"main": "dist/cjs/index.js",
"types": "dist/es/index.d.ts",
"repository": {
"type": "git",
"url": "git://github.com/Volst/ui-components.git"
},
"scripts": {
"start": "NODE_ENV=development start-storybook -p 9001 -c storybook",
"lint": "tslint -p .",
"test": "jest",
"preversion": "npm run -s lint && NODE_ENV=production npm run -s build && npm test && npm run -s deploy-storybook",
"build": "rm -rf dist/** && tsc -p tsconfig.build-es.json && tsc -p tsconfig.build-cjs.json",
"precommit": "lint-staged",
"build-storybook": "NODE_ENV=production build-storybook -c storybook -o .out -s storybook/public",
"deploy-storybook": "storybook-to-ghpages -c storybook",
"ci": "npm run -s build && npm test"
},
"lint-staged": {
"src/**/*.{js,ts,tsx}": [
"prettier --single-quote --trailing-comma es5 --write",
"git add"
]
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"moduleNameMapper": {
"\\.woff2$": "<rootDir>/__mocks__/fontMock.js"
},
"globals": {
"ts-jest": {
"enableTsDiagnostics": true
}
}
},
"dependencies": {
"@types/i18next": "^8.4.3",
"@types/lodash": "^4.14.100",
"@types/rc-tooltip": "^3.4.11",
"@types/react": "^16.0.35",
"@types/react-custom-scrollbars": "^4.0.3",
"@types/react-dom": "^16.0.3",
"@types/react-onclickoutside": "^6.0.3",
"@types/react-router-dom": "^4.2.3",
"@types/react-text-mask": "^5.1.0",
"downshift": "^1.5.0",
"emotion-theming": "^9.1.2",
"polished": "^1.7.0",
"prop-types": "^15.5.10",
"rc-dialog": "^7.1.0",
"rc-tooltip": "^3.7.2",
"react-custom-scrollbars": "^4.1.2",
"react-day-picker": "^6.2.1",
"react-input-autosize": "^2.0.1",
"react-onclickoutside": "^6.6.0",
"react-text-mask": "^5.0.2",
"react-textarea-autosize": "^6.0.0",
"text-mask-addons": "^3.7.0"
},
"engines": {
"node": ">=4"
},
"files": [
"dist/"
],
"devDependencies": {
"@storybook/addon-actions": "^3.2.0",
"@storybook/addon-info": "^3.1.6",
"@storybook/addon-storyshots": "^3.1.8",
"@storybook/react": "^3.1.8",
"@storybook/storybook-deployer": "^2.0.0",
"@types/jest": "^22.1.4",
"@types/webpack-env": "^1.13.5",
"@volst/tslint-config": "^0.2.1",
"emotion": "9.1.3",
"fork-ts-checker-webpack-plugin": "^0.4.0",
"husky": "^1.1.0",
"i18next": "^11.3.2",
"jest": "^23.0.1",
"lint-staged": "^7.0.0",
"lodash": "^4.17.4",
"moment": "^2.18.1",
"prettier": "^1.5.2",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-emotion": "9.1.3",
"react-powerplug": "^0.1.3",
"react-router-dom": "^4.1.2",
"react-test-renderer": "^16.0.0",
"rollup": "^0.59.0",
"rollup-plugin-typescript2": "^0.17.0",
"ts-jest": "^22.4.1",
"ts-loader": "^3.5.0",
"tslint": "^5.9.1",
"typescript": "^3.0.3",
"typescript-styled-plugin": "^0.11.0"
},
"peerDependencies": {
"emotion": "9.1.3",
"i18next": ">=9.0.0",
"lodash": "^4.10.0",
"moment": ">=2.18.1",
"react": ">=15.0.0",
"react-dom": ">=15.0.0",
"react-emotion": "9.1.3",
"react-router-dom": "^4.1.1"
}
}