-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.11 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
{
"name": "create-iot-react-app",
"version": "1.7.0",
"engines": {
"node": "12.x || 14.x || 16.x"
},
"description": "thin wrapper around create-react-app that add extra functionality needed on most iot projects",
"main": "index.js",
"bin": {
"create-iot-react-app": "index.js"
},
"scripts": {
"build": "babel src --out-dir build",
"test": "eslint index.js --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/davidicus/create-iot-react-app.git"
},
"keywords": [
"react",
"create-react-app",
"node",
"Carbon"
],
"author": "David Conner",
"license": "MIT",
"bugs": {
"url": "https://github.com/davidicus/create-iot-react-app/issues"
},
"homepage": "https://github.com/davidicus/create-iot-react-app#readme",
"dependencies": {
"colors": "^1.3.0",
"jest": "^23.6.0",
"shelljs": "^0.8.2"
},
"devDependencies": {
"eslint": "^5.11.1",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0"
},
"resolutions": {
"@carbon/charts": "0.41.11",
"@carbon/charts-react": "0.41.11"
}
}