-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
65 lines (65 loc) · 1.95 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
{
"name": "secret-santa-app",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"start": "NODE_ENV=production && npm run start:prod || npm run start:dev",
"start:prod": "node server.js",
"start:dev": "concurrently \"nodemon --ignore 'client/*'\" \"npm run client\"",
"client": "cd client && npm run start",
"seed": "node scripts/seedDB.js",
"install": "cd client && npm install",
"build": "cd client && npm run build",
"heroku-postbuild": "npm run build",
"test": "cross-env && jest --coverage"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-transform-modules-commonjs": "^7.10.4",
"@babel/preset-env": "^7.10.4",
"@babel/preset-react": "^7.10.4",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.5.0",
"@testing-library/user-event": "^7.2.1",
"babel-jest": "^24.9.0",
"concurrently": "^4.1.0",
"cross-env": "^7.0.2",
"eslint": "^6.6.0",
"eslint-plugin-react": "^7.20.6",
"jest": "24.9.0",
"jest-canvas-mock": "^2.2.0",
"jest-transform-css": "^2.0.0",
"jest-transform-file": "^1.1.1",
"jsdom": "16.4.0",
"jsdom-global": "3.0.2",
"mysql2": "^1.7.0",
"nodemon": "^1.18.7",
"react": "^16.8.6",
"react-bootstrap": "^1.0.0-beta.14",
"react-dom": "^16.8.6",
"react-router-dom": "^5.0.1",
"react-scripts": "^3.0.1",
"webpack-dev-server": "3.10.3"
},
"dependencies": {
"babel-eslint": "^10.0.1",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-graphql": "^0.11.0",
"express-jwt": "^6.0.0",
"graphql": "^15.3.0",
"graphql-iso-date": "^3.6.1",
"if-env": "^1.0.4",
"jwks-rsa": "^1.8.1",
"jwt-decode": "^2.2.0",
"lodash": "^4.17.20",
"morgan": "^1.10.0",
"mysql2": "^1.7.0",
"nodemailer": "^6.4.11",
"react-router-dom": "^5.2.0",
"sequelize": "^6.3.5"
}
}