-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
64 lines (64 loc) · 1.88 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
{
"name": "yard_farm",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"server-start": "adafruit-io server start",
"server-stop": "adafruit-io server stop",
"react-dev": "webpack -d --watch",
"server-dev": "nodemon src/server/index.js",
"seed-db": "node src/mongo/scripts/seed.js && mongoimport -d dataMoments -c moments --type csv --file moments.csv --headerline"
},
"repository": {
"type": "git",
"url": "https://github.com/Bohemus307/YardFarm1.0"
},
"author": "Joshua Oxner",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.10.5",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/preset-env": "^7.1.0",
"@babel/preset-react": "^7.0.0",
"@babel/preset-stage-0": "^7.0.0",
"@babel/register": "^7.0.0",
"babel-cli": "^6.18.0",
"babel-loader": "^8.0.1",
"babel-minify-webpack-plugin": "^0.2.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"css-loader": "^4.1.0",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-react-hooks": "^2.5.0",
"style-loader": "^1.2.1",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11"
},
"dependencies": {
"adafruit-io": "^3.0.2",
"axios": "^0.21.1",
"c3": "^0.7.15",
"cors": "^2.8.5",
"d3": "^5.16.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"faker": "^4.1.0",
"file-system": "^1.2.2",
"mongoose": "^5.9.18",
"morgan": "^1.10.0",
"nodemon": "^2.0.4",
"path": "^0.12.7",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-beautiful-dnd": "^13.0.0",
"react-css-loaders": "0.0.6",
"react-dom": "^16.13.1",
"react-router-dom": "^5.2.0",
"react-spring": "^8.0.27",
"styled-components": "^5.2.1"
}
}