-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.32 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
{
"name": "light-react-grid",
"version": "1.0.5",
"description": "Small and very simple React grid system based on simple-scss-layout-grid package",
"keywords": ["grid", "React", "UI", "Layout"],
"author": "Marko Šutija <[email protected]>",
"license": "MIT",
"repository": "sutija/react-grid",
"main": "dist/index.js",
"module": "dist/index.modern.js",
"source": "src/index.tsx",
"engines": {
"node": ">=14"
},
"scripts": {
"build": "microbundle-crl --no-compress --format modern,cjs",
"start": "microbundle-crl watch --no-compress --format modern,cjs",
"prepare": "run-s build",
"test": "run-s test:unit test:lint test:build",
"test:build": "run-s build",
"test:lint": "eslint .",
"test:unit": "cross-env CI=1 react-scripts test --env=jsdom",
"test:watch": "react-scripts test --env=jsdom",
"predeploy": "cd example && yarn install && yarn run build",
"deploy": "gh-pages -d example/build"
},
"peerDependencies": {
"react": "~16.0.0"
},
"devDependencies": {
"@types/node": "~18.11.9",
"@types/react": "~16.9.56",
"@types/react-dom": "~16.9.17",
"@typescript-eslint/eslint-plugin": "~5.43.0",
"@typescript-eslint/parser": "~5.43.0",
"babel-eslint": "~10.1.0",
"cross-env": "~7.0.3",
"eslint": "~8.27.0",
"eslint-config-prettier": "~8.5.0",
"eslint-config-standard": "~17.0.0",
"eslint-config-standard-react": "~12.0.0",
"eslint-plugin-import": "~2.26.0",
"eslint-plugin-node": "~11.1.0",
"eslint-plugin-prettier": "~4.2.1",
"eslint-plugin-promise": "~6.1.1",
"eslint-plugin-react": "~7.31.10",
"eslint-plugin-standard": "~5.0.0",
"gh-pages": "~4.0.0",
"microbundle-crl": "~0.13.11",
"npm-run-all": "~4.1.5",
"prettier": "~2.7.1",
"react": "~16.13.1",
"react-dom": "~16.13.1",
"react-scripts": "~3.4.1",
"typescript": "3.9.4"
},
"resolutions": {
"ini": "1.3.6",
"elliptic": "6.5.4",
"node-forge": "^1.0.0",
"nth-check": "^2.0.1",
"loader-utils": "1.4.2",
"shell-quote": "1.7.3",
"minimatch": "3.0.5",
"immer": "9.0.6",
"ansi-html": "0.0.8",
"glob-parent": "5.1.2",
"postcss": "7.0.36",
"react-dev-utils": "11.0.4",
"browserslist": "4.16.5",
"node-notifier": "8.0.1",
"jsdom": "16.5.0"
},
"files": [
"dist"
]
}