-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
109 lines (109 loc) · 3.04 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
{
"name": "rc-vertical-timeline",
"version": "1.0.1",
"description": "Vertical Timeline React Component",
"main": "build/index.js",
"minified": "build/index.min.js",
"module": "build/index.es.js",
"types": "build/index.d.ts",
"files": [
"build/**/*"
],
"jsnext:main": "build/index.es.js",
"scripts": {
"clean": "del-cli ./build",
"build": "del-cli ./build && rollup -c",
"minify-css": "postcss build/rc-vertical-timeline.css > build/rc-vertical-timeline.min.css",
"release": "del-cli ./build && rollup -c && npm run minify-css && del-cli ./build/components/__tests__",
"lint": "standard",
"format": "prettier-standard --format",
"build-storybook": "build-storybook -o docs --quiet",
"test": "jest --coverage",
"storybook": "start-storybook -p 9001",
"prepare": "npm run test && npm run release"
},
"repository": {
"url": "https://github.com/jeltemx/rc-vertical-timeline",
"type": "git"
},
"homepage": "https://jeltemx.github.io/rc-vertical-timeline/?path=/story/vertical-timeline--main",
"keywords": [
"vertical-timeline",
"react-components",
"react"
],
"author": {
"name": "Jelte Lagendijk",
"email": "[email protected]"
},
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.8.6",
"@material-ui/core": "^4.9.5",
"@material-ui/icons": "^4.9.1",
"@storybook/addon-docs": "^5.3.14",
"@storybook/addon-knobs": "^5.3.14",
"@storybook/addon-links": "^5.3.14",
"@storybook/addon-viewport": "^5.3.14",
"@storybook/preset-typescript": "^1.2.0",
"@storybook/react": "^5.3.14",
"@testing-library/jest-dom": "^5.1.1",
"@testing-library/react": "^9.4.1",
"@types/classnames": "^2.2.9",
"@types/jest": "^25.1.3",
"@types/prop-types": "^15.7.3",
"@types/react": "^16.9.23",
"@types/react-dom": "^16.9.5",
"awesome-typescript-loader": "^5.2.1",
"babel-loader": "^8.0.6",
"cssnano": "^4.1.10",
"del-cli": "^3.0.0",
"jest": "^25.1.0",
"postcss-cli": "^7.1.0",
"react": "^16.8.6",
"react-docgen-typescript-loader": "^3.6.0",
"react-dom": "^16.8.6",
"rollup": "^1.32.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-peer-deps-external": "^2.2.2",
"rollup-plugin-scss": "^2.1.0",
"rollup-plugin-terser": "^5.2.0",
"rollup-plugin-typescript2": "^0.26.0",
"sass-loader": "^8.0.2",
"standard": "^14.3.1",
"standard-prettier": "^1.0.1",
"ts-jest": "^25.2.1",
"typescript": "^3.8.3"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "jsdom",
"testPathIgnorePatterns": [
"build/"
]
},
"standard": {
"ignore": [
"node_modules/",
"build/"
],
"globals": [
"describe",
"it",
"test",
"expect",
"afterAll",
"jest"
]
},
"peerDependencies": {
"react": "^16.8.6",
"react-dom": "^16.8.6"
},
"dependencies": {
"classnames": "^2.2.6",
"prop-types": "^15.7.2",
"react-visibility-sensor": "^5.1.1"
}
}