-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
79 lines (79 loc) · 2.58 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
{
"name": "splinter-canopyjs",
"version": "0.0.1",
"description": "React context provider for building Canopy applications.",
"main": "build/index.js",
"author": "Cargill Incorporated",
"license": "Apache-2.0",
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/Cargill/splinter-canopyjs"
},
"components": "build/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prepare": "npm run build",
"lint": "eslint src/",
"build": "NODE_ENV=production rollup -c && npm run rollup:clean",
"rollup:clean": "cd build/themes; each '*/index.js' -- rm index.js"
},
"peerDependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.25",
"@fortawesome/free-regular-svg-icons": "^5.11.2",
"@fortawesome/free-solid-svg-icons": "^5.12.0",
"@fortawesome/react-fontawesome": "^0.1.8",
"@material-ui/core": "^4.11.2",
"@material-ui/icons": "^4.11.2",
"classnames": "^2.2.6",
"react": "^16.10.2",
"react-dom": "^16.10.2"
},
"dependencies": {
"@babel/runtime": "^7.8.4",
"@fortawesome/fontawesome-svg-core": "^1.2.25",
"@fortawesome/free-regular-svg-icons": "^5.11.2",
"@fortawesome/free-solid-svg-icons": "^5.12.0",
"@fortawesome/react-fontawesome": "^0.1.8",
"@material-ui/core": "^4.11.2",
"@material-ui/icons": "^4.11.2",
"classnames": "^2.2.6",
"history": "^4.10.1",
"prop-types": "^15.7.2",
"webpack": "^4.41.5"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.4",
"@babel/plugin-transform-runtime": "^7.8.3",
"@babel/preset-env": "^7.8.7",
"@babel/preset-react": "^7.8.3",
"@rollup/plugin-commonjs": "^11.0.2",
"@rollup/plugin-node-resolve": "^7.1.1",
"autoprefixer": "^9.7.0",
"babel-loader": "^8.0.6",
"cli-foreachfile": "^1.0.5",
"eslint": "^6.6.0",
"eslint-config-airbnb": "18.0.1",
"eslint-config-prettier": "^6.4.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-react-hooks": "^1.7.0",
"postcss": "^8.0.0",
"postcss-base64": "^0.7.1",
"postcss-clean": "^1.1.0",
"prettier": "^1.18.2",
"react": "^16.10.2",
"react-dom": "^16.10.2",
"rollup": "^1.26.0",
"rollup-plugin-analyzer": "^3.2.2",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-peer-deps-external": "^2.2.0",
"rollup-plugin-sass": "^1.2.2",
"rollup-plugin-terser": "^5.1.3",
"rollup-plugin-uglify": "^6.0.4",
"webpack-cli": "^3.3.10"
}
}