-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.22 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.22 KB
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": "test",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "nodemon server/server.js",
"postgres": "node databasePostgres/postgres.js",
"mongo": "node databaseMongo/seed.js",
"dev": "parcel client/src/index.html -d client/dist",
"build": "parcel build client/src/index.html -d client/dist",
"test": "jest"
},
"keywords": [],
"author": "Brian Oh",
"license": "ISC",
"dependencies": {
"axios": "^0.18.0",
"cors": "^2.8.5",
"express": "^4.16.4",
"mongoose": "^5.5.13",
"pg": "^7.11.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-images": "^0.5.19",
"redis": "^2.8.0",
"sqlite3": "^4.0.6"
},
"devDependencies": {
"@babel/core": "^7.4.3",
"@babel/preset-env": "^7.4.3",
"@babel/preset-react": "^7.0.0",
"eslint": "^5.3.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.12.4",
"jest": "^24.7.1",
"morgan": "^1.9.1",
"nodemon": "^1.18.10",
"parcel-bundler": "^1.12.3",
"prettier": "^1.16.4"
}
}