This repository was archived by the owner on Dec 7, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
117 lines (117 loc) · 3.84 KB
/
package.json
File metadata and controls
117 lines (117 loc) · 3.84 KB
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
{
"name": "@tintup/themes",
"version": "1.0.108",
"license": "MIT",
"main": "lib/index.js",
"module": "lib/index.es.js",
"files": [
"lib"
],
"jsnext:main": "lib/index.es.js",
"scripts": {
"build": "npm run lint && rollup -c",
"lint": "eslint . --ext .ts",
"watch": "rollup -c --watch",
"test": "jest --collectCoverage",
"test:watch": "jest --watch",
"update-snapshot": "jest --updateSnapshot",
"update-tint": "cd ../tint && npm install @tintup/themes",
"link-themes": "cd lib && npm link && cd ../../tint/ && npm link @tintup/themes",
"dev": "npm run link-themes && npm run watch",
"deploy-lib": "npm install && npm run lint && npm run test && npm version patch && npm run build && npm publish && npm run update-tint && npm run build-storybook",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook -o ../../app/docs/"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.32",
"@fortawesome/free-brands-svg-icons": "^5.15.1",
"@fortawesome/free-solid-svg-icons": "^5.15.1",
"@fortawesome/react-fontawesome": "^0.1.13",
"@tintup/tint-sdk": "1.0.37",
"@types/react-tooltip": "^3.11.0",
"@types/webfontloader": "^1.6.29",
"@vimeo/player": "^2.10.0",
"bricks.js": "^1.8.0",
"classnames": "^2.2.6",
"delay": "^4.4.0",
"intersection-observer": "^0.10.0",
"konva": "7.0.3",
"react-konva": "16.13.0-3",
"react-masonry-component": "^6.2.1",
"react-masonry-css": "^1.0.14",
"react-spring": "8.0.27",
"react-timeago": "^4.4.0",
"react-tooltip": "^3.11.1",
"reselect": "^4.0.0",
"typescript": "^3.6.4",
"use-image": "^1.0.6",
"webfontloader": "^1.6.28"
},
"devDependencies": {
"@babel/core": "^7.12.3",
"@storybook/addon-actions": "^6.1.2",
"@storybook/addon-controls": "^6.1.2",
"@storybook/addon-essentials": "^6.1.2",
"@storybook/addon-links": "^6.1.2",
"@storybook/preset-scss": "^1.0.3",
"@storybook/react": "^6.1.2",
"@testing-library/dom": "^7.24.5",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.0.4",
"@testing-library/react-hooks": "^5.0.0",
"@testing-library/user-event": "^12.1.7",
"@types/bricks.js": "^1.8.1",
"@types/classnames": "^2.2.10",
"@types/facebook-js-sdk": "^3.3.0",
"@types/jest": "^25.2.3",
"@types/react": "^16.9.16",
"@types/react-dom": "^16.9.4",
"@types/react-fontawesome": "^1.6.4",
"@types/react-timeago": "^4.1.1",
"@types/recompose": "^0.30.7",
"@types/vimeo__player": "^2.9.0",
"@types/youtube": "0.0.39",
"@types/yup": "^0.26.24",
"@typescript-eslint/eslint-plugin": "^3.5.0",
"@typescript-eslint/parser": "^3.5.0",
"eslint-plugin-react-hooks": "^4.2.0",
"babel-loader": "^8.2.1",
"core-js": "^3.7.0",
"css-loader": "^5.0.1",
"eslint": "^7.3.1",
"highlight.js": ">=10.4.1",
"jest": "^25.3.0",
"node-fetch": ">=2.6.1",
"node-sass": "^4.12.0",
"react": "^16.12.0",
"react-docgen-typescript": "^1.20.5",
"react-dom": "^16.12.0",
"react-test-renderer": "^17.0.1",
"recompose": "^0.30.0",
"rollup": "^1.24.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-copy": "^3.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-peer-deps-external": "^2.2.0",
"rollup-plugin-sass": "^1.2.2",
"rollup-plugin-typescript2": "^0.24.3",
"rollup-watch": "^4.3.1",
"sass-loader": "^10.1.0",
"style-loader": "^2.0.0",
"ts-jest": "^25.5.1",
"typed-scss-modules": "^0.0.12",
"yup": "^0.27.0"
},
"peerDependencies": {
"@types/react": "^16.9.16",
"@types/react-dom": "^16.9.4",
"react": "^16.12.0",
"react-dom": "^16.12.0"
},
"description": "Tint react components library ",
"directories": {
"lib": "lib",
"test": "test"
},
"author": "Tint"
}