-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
82 lines (82 loc) · 2.59 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
78
79
80
81
82
{
"name": "react-fast-grid",
"version": "0.0.0-semantic-release",
"main": "./dist/Grid.js",
"typings": "./dist/Grid.d.ts",
"scripts": {
"build": "export NODE_ENV=production; npm run build-lib; npm run build-app",
"watch": "export NODE_ENV=development; npx npm-run-all --parallel watch-app watch-lib",
"build-app": "export NODE_ENV=production; rm -r ./public/scripts; npx webpack --config webpack.config.js",
"build-lib": "export NODE_ENV=production; rm -r ./dist; npx tsc",
"watch-app": "export NODE_ENV=development; npx webpack --config webpack.config.js",
"watch-lib": "export NODE_ENV=development; rm -r ./dist; npx tsc-watch",
"start": "node register.js",
"test": "npx jest ./spec/*.tsx --coverage"
},
"files": [
"dist"
],
"keywords": [
"grid",
"fast",
"dynamic",
"react"
],
"author": "Mathew Kurian <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/mathew-kurian/react-fast-grid.git"
},
"bugs": {
"url": "https://github.com/mathew-kurian/react-fast-grid/issues"
},
"homepage": "https://github.com/mathew-kurian/react-fast-grid#readme",
"description": "Useful Grid algorithm from Material-UI (https://github.com/mui-org/material-ui)",
"dependencies": {
"clsx": "^1.1.0",
"jss-preset-default": "^10.3.0",
"jss": "^10.3.0"
},
"peerDependencies": {
"react": ">=15",
"react-dom": ">=15"
},
"devDependencies": {
"@babel/core": "^7.11.0",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-proposal-decorators": "^7.10.5",
"@babel/preset-env": "^7.11.0",
"@babel/preset-react": "^7.10.4",
"@babel/preset-typescript": "^7.10.4",
"@babel/register": "^7.10.5",
"@types/compression": "^1.7.0",
"@types/cors": "^2.8.7",
"@types/express": "^4.17.7",
"@types/jest": "^25.2.1",
"@types/node": "^13.9.3",
"@types/react": ">=15",
"@types/react-dom": ">=15",
"@types/react-test-renderer": "^16.9.2",
"awesome-esbuild-loader": "^1.0.3",
"babel-loader": "^8.1.0",
"chai": "^4.2.0",
"core-js": "^3.6.5",
"css-loader": "^4.2.0",
"express": "^4.17.1",
"fork-ts-checker-webpack-plugin": "^5.0.13",
"jest": "^25.3.0",
"react": ">=15",
"react-dom": ">=15",
"react-fast-grid": "latest",
"react-icons": "^3.9.0",
"react-test-renderer": "^16.13.1",
"snapshot-diff": "^0.7.0",
"style-loader": "^1.2.1",
"ts-jest": "^26.2.0",
"typescript": "3.8.3",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
}
}