This repository was archived by the owner on Apr 23, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.47 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.47 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
{
"name": "react-snuggle",
"version": "1.0.6",
"description": "Simple masonry-like css-based React Component",
"keywords": [
"grid",
"masonry",
"columns",
"tiles",
"pinterest",
"css",
"responsive",
"react"
],
"main": "dist/react-snuggle.cjs.js",
"module": "dist/react-snuggle.es.js",
"jsnext:main": "dist/react-snuggle.es.js",
"types": "dist/index.d.ts",
"scripts": {
"dev": "start-storybook -p 6006",
"build": "rm -fr ./dist && rollup -c",
"test": "npm run lint && npm run tsc",
"publish:storybook": "build-storybook && storybook-to-ghpages",
"format": "prettier --write \"src/**/*.tsx\"",
"lint": "tslint -c tslint.json 'src/**/*.{ts,tsx}'",
"tsc": "node_modules/.bin/tsc",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "git+https://github.com/significa/react-snuggle.git"
},
"author": "Significa Lda.",
"license": "ISC",
"bugs": {
"url": "https://github.com/significa/react-snuggle/issues"
},
"homepage": "https://github.com/significa/react-snuggle#readme",
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.3.1",
"@babel/preset-react": "^7.0.0",
"@storybook/addon-knobs": "^4.1.11",
"@storybook/addon-storysource": "^4.1.11",
"@storybook/addon-viewport": "^4.1.11",
"@storybook/react": "^4.1.11",
"@storybook/storybook-deployer": "^2.8.1",
"@types/react": "^16.7.22",
"@types/storybook__react": "^4.0.0",
"awesome-typescript-loader": "^5.2.1",
"babel-core": "^7.0.0-bridge.0",
"babel-loader": "^8.0.5",
"babel-runtime": "^6.26.0",
"commitizen": "^3.0.5",
"css-loader": "^2.1.0",
"cz-conventional-changelog": "^2.1.0",
"husky": "^1.3.1",
"prettier": "^1.16.3",
"react": "^16.4.2",
"react-docgen-typescript-loader": "^3.0.1",
"react-dom": "^16.4.2",
"rollup": "2.3.3",
"rollup-plugin-replace": "^2.0.0",
"rollup-plugin-typescript2": "^0.27.0",
"rollup-plugin-uglify-es": "^0.0.1",
"scrollreveal": "^4.0.0",
"semantic-release": "^17.2.3",
"styled-components": "^4.1.2",
"tslint": "^5.12.0",
"tslint-config-prettier": "^1.17.0",
"tslint-react": "^3.6.0",
"typescript": "^3.2.4"
},
"peerDependencies": {
"react": "^15.0.0-0 || ^16.0.0-0"
},
"dependencies": {},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"resolutions": {
"@types/react": "^16.7.22"
}
}