This repository has been archived by the owner on Dec 25, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
75 lines (75 loc) · 2.75 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
{
"name": "react-raster",
"version": "8.2.1",
"description": "Advanced grid- and styling-system which is highly customizable and ready for server-side-rendering.",
"author": "AndreasFaust",
"license": "MIT",
"repository": "AndreasFaust/react-raster",
"homepage": "https://andreasfaust.github.io/react-raster-docs/",
"main": "dist/index.js",
"module": "dist/index.es.js",
"jsnext:main": "dist/index.es.js",
"types": "./dist/index.d.ts",
"files": [
"/dist"
],
"engines": {
"node": ">=8",
"npm": ">=5"
},
"dependencies": {},
"devDependencies": {
"@rollup/plugin-commonjs": "^19.0.0",
"@rollup/plugin-node-resolve": "^13.0.0",
"@rollup/plugin-url": "^6.0.0",
"@types/node": "^15.12.5",
"@types/react": "^17.0.11",
"@types/resize-observer-browser": "^0.1.5",
"@types/styled-components": "^5.1.10",
"@typescript-eslint/eslint-plugin": "4.28.0",
"@typescript-eslint/parser": "4.28.0",
"babel-eslint": "^10.1.0",
"babel-plugin-styled-components": "^1.12.0",
"eslint": "7.29.0",
"eslint-config-next": "^11.0.1",
"framer-motion": "^4.1.17",
"generate-changelog": "^1.8.0",
"gh-pages": "^3.2.3",
"lodash": "^4.17.21",
"next": "11.0.1",
"react": "17.0.2",
"react-dom": "^17.0.2",
"rollup": "^2.52.3",
"rollup-plugin-css-only": "^3.1.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-typescript2": "^0.30.0",
"styled-components": "^5.3.0",
"typescript": "^4.3.4"
},
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0",
"styled-components": ">=5.2.1"
},
"keywords": [
"React",
"Grid",
"Layout",
"Styled Components",
"Server Side Rendering",
"Raster",
"Next JS",
"NextJS"
],
"scripts": {
"dev": "next dev",
"start": "yarn dev",
"build": "rollup -c",
"lint": "next lint",
"release:major": "yarn build && git add . && changelog -M && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && npm version major && git push origin && git push origin --tags && npm publish",
"release:minor": "yarn build && git add . && changelog -m && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && npm version minor && git push origin && git push origin --tags && npm publish",
"release:patch": "yarn build && git add . && changelog -p && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && npm version patch && git push origin && git push origin --tags && npm publish",
"release:dev": "yarn build && git add . && git commit -m 'Do Beta-Release' && git push origin && git push origin --tags && npm version 8.0.0-next.19 && npm publish --tag next",
"deploy": "yarn next build && yarn next export && touch out/.nojekyll && gh-pages -t -d out"
}
}