-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.61 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.61 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
{
"name": "@reperio/fancy-grid",
"version": "0.8.0",
"description": "A client-side grid that's FANCY",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"examples": "yarn build && webpack-dev-server --config webpack.examples.config.js",
"build": "rm -rf ./dist && webpack --mode=production",
"watch": "webpack --watch --mode=production",
"clean": "rm -rf ./dist",
"deploy": "yarn build && yarn publish --access public"
},
"repository": "https://github.com/reperio/fancy-grid.git",
"author": "Sean Price <seanprice@sevenhillstechnology.com>",
"license": "MPL-2.0",
"dependencies": {
"@fortawesome/fontawesome-free": "^6.2.0",
"react-bootstrap": "^2.6.0"
},
"peerDependencies": {
"react": "^18.2.0",
"react-redux": "^8.0.5"
},
"devDependencies": {
"@types/react": "^18.0.25",
"@types/react-dom": "^18.0.8",
"@types/react-redux": "^7.1.24",
"@types/react-syntax-highlighter": "^15.5.5",
"css-loader": "^6.7.1",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.5.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-redux": "^8.0.5",
"react-syntax-highlighter": "^15.5.0",
"redux": "^4.2.0",
"redux-thunk": "^2.4.2",
"sass": "^1.56.0",
"sass-loader": "^13.1.0",
"style-loader": "^3.3.1",
"ts-loader": "^9.4.1",
"typescript": "^4.8.4",
"url-loader": "^4.1.1",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.11.1",
"webpack-node-externals": "^3.0.0"
},
"files": [
"dist/**/*"
]
}