-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.68 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
80
81
82
83
84
85
{
"name": "saltydogui",
"version": "1.0.0",
"description": "Ui for salty dog salinity sensor",
"main": "index.js",
"scripts": {
"build": "webpack --mode production --config webpack.config.js",
"start": "node src/server/index.js",
"create-csv": "node src/database/scripts/seedPgDo.js && node src/database/scripts/seedPgPh.js && node src/database/scripts/seedPgEc.js ",
"create-db-schema": "node src/database/models/schema.js",
"react-dev": "webpack --mode development --config webpack.config.js --watch --progress",
"server-dev": "nodemon src/server/index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Bohemus307/SaltyDogUI.git"
},
"author": "Joshua Oxner",
"license": "ISC",
"bugs": {
"url": "https://github.com/Bohemus307/SaltyDogUI/issues"
},
"homepage": "https://github.com/Bohemus307/SaltyDogUI#readme",
"dependencies": {
"@apollo/client": "^3.2.9",
"@babel/cli": "^7.0.0",
"@nivo/core": "^0.65.0",
"@nivo/line": "^0.65.1",
"@nivo/pie": "^0.65.1",
"@prisma/client": "^2.20.1",
"@webpack-cli/init": "^1.1.3",
"apollo-boost": "^0.4.9",
"apollo-link-ws": "^1.0.20",
"apollo-server": "^2.19.0",
"apollo-server-express": "^2.18.2",
"apollo-utilities": "^1.3.4",
"axios": "^0.21.1",
"bcrypt": "^5.0.0",
"body-parser": "^1.19.0",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-jwt": "^6.0.0",
"express-promise-router": "^4.0.1",
"fs": "0.0.1-security",
"graphql": "^15.4.0",
"graphql-subscriptions": "^1.1.0",
"graphql-tag": "^2.11.0",
"jsonwebtoken": "^8.5.1",
"jwt-decode": "^3.1.1",
"morgan": "^1.10.0",
"nodemon": "^2.0.5",
"path": "^0.12.7",
"pg": "^8.4.2",
"pg-hstore": "^2.3.3",
"prop-types": "^15.7.2",
"react": "^16.14.0",
"react-csv": "^2.0.3",
"react-dom": "^16.14.0",
"react-router-dom": "^5.2.0",
"regenerator-runtime": "^0.13.7",
"subscriptions-transport-ws": "^0.9.18",
"typescript": "^4.0.5"
},
"devDependencies": {
"@babel/core": "^7.12.0",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/preset-env": "^7.12.0",
"@babel/preset-react": "^7.10.4",
"babel-loader": "^8.1.0",
"css-loader": "^5.0.0",
"eslint": "^7.11.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"prisma": "^2.20.1",
"style-loader": "^2.0.0",
"webpack": "^5.1.0",
"webpack-cli": "^4.6.0"
}
}