-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
56 lines (56 loc) · 1.7 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
{
"name": "react-flexcanvas",
"version": "0.4.3",
"description": "Canvas grid system built with flexboxes for React",
"main": "lib/react-flexcanvas.js",
"keywords": [
"react",
"canvas",
"business model canvas",
"flexbox"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"clean": "rm -rf lib && mkdir lib",
"compile": "npm run clean && webpack --config webpack.config.js --mode=production",
"watch": "npm run clean && webpack --config webpack.config.js --mode=development --watch",
"prepublish": "npm run compile",
"release:pre": "npm version prerelease && npm publish --tag pre",
"release:patch": "npm version patch && npm publish",
"release:minor": "npm version minor && npm publish",
"release:major": "npm version major && npm publish"
},
"directories": {
"lib": "lib"
},
"author": "Miguel Peixe <miguel@peixe.co>",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.10.5",
"@babel/core": "^7.11.0",
"@babel/node": "^7.10.5",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-proposal-export-default-from": "^7.10.4",
"@babel/plugin-proposal-object-rest-spread": "^7.11.0",
"@babel/preset-env": "^7.11.0",
"@babel/preset-react": "^7.10.4",
"babel-loader": "^8.1.0",
"css-loader": "^4.1.1",
"file-loader": "^6.0.0",
"less": "^3.12.2",
"less-loader": "^6.2.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"style-loader": "^1.2.1",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12"
},
"peerDependencies": {
"react": "16.x",
"react-dom": "16.x"
},
"dependencies": {
"lodash.get": "^4.4.2",
"prop-types": "^15.7.2"
}
}