forked from bikk-uk/react-css-grid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.78 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
{
"name": "@react-css/grid",
"version": "2.0.0",
"description": "A thin wrapper to help make CSS Grid simpler and more expressive",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "jest --coverage",
"test-watch": "jest --watch",
"test-watch-all": "jest --watchAll",
"lint": "tsc --noEmit && eslint '*/**/*.{ts,tsx}' --quiet --fix",
"build": "tsc",
"clean": "rm -rf dist/*",
"release": "yarn prepublishOnly && yarn test && yarn lint",
"prepublishOnly": "yarn && yarn clean && yarn build",
"snyk-protect": "snyk-protect",
"prepare": "yarn run snyk-protect"
},
"repository": {
"type": "git",
"url": "https://github.com/bikk-uk/react-css-grid.git"
},
"keywords": [
"react",
"reactjs",
"css",
"layout",
"grid",
"column",
"row",
"styles",
"simpler",
"expressive"
],
"author": "bikk-uk",
"license": "MIT",
"bugs": {
"url": "https://github.com/bikk-uk/react-css-grid/issues"
},
"homepage": "https://github.com/bikk-uk/react-css-grid#readme",
"devDependencies": {
"@snyk/protect": "^1.980.0",
"@testing-library/react": "^13.3.0",
"@types/jest": "^28.1.6",
"@types/react": "^17.0.43",
"@types/react-dom": "^18.0.6",
"@typescript-eslint/eslint-plugin": "^5.30.7",
"@typescript-eslint/parser": "^5.30.7",
"csstype": "^3.1.0",
"eslint": "^8.20.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"jest": "^28.1.3",
"jest-environment-jsdom": "^28.1.3",
"prettier": "^2.7.1",
"ts-jest": "^28.0.7",
"typescript": "^4.7.4"
},
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"snyk": true
}