forked from jamesmart77/chedah
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.94 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
{
"name": "chedah",
"version": "1.0.0",
"description": "",
"main": "server.js",
"repository": {
"type": "git",
"url": "https://github.com/jamesmart77/chedah.git"
},
"homepage": "https://chedah.herokuapp.com/",
"scripts": {
"server": "node server.js",
"client": "node scripts/start-client.js",
"both": "concurrently \"NODE_ENV=production node server.js\" \"npm run client\"",
"start": "concurrently \"NODE_ENV=production nodemon server.js\" \"npm run client\"",
"build": "node scripts/build.js",
"seed": "node scripts/seedDB.js",
"test": "mocha --exit",
"installDeps": "yarn && cd client && yarn",
"prepare": "yarn run snyk-protect",
"snyk-protect": "snyk-protect"
},
"author": "James Martineau, Ben Baumann, Michelle Baumann, Michael Fessenden, Justin Rice ",
"license": "ISC",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-jest": "^22.4.1",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-register": "^6.26.0",
"chai": "^4.1.2",
"chai-http": "^3.0.0",
"concurrently": "^3.5.1",
"mocha": "^5.0.4",
"nodemon": "^1.11.0",
"react-event-observer": "^0.5.11",
"react-materialize": "^3.0.2",
"react-test-renderer": "^16.2.0",
"supertest": "^3.0.0"
},
"dependencies": {
"axios": "^1.7.8",
"body-parser": "^1.20.3",
"cors": "^2.8.4",
"create-react-class": "^15.7.0",
"dotenv": "^5.0.0",
"express": "^4.21.2",
"express-jwt": "^7.0.0",
"jest-cli": "^27.0.0",
"json-stringify-safe": "^5.0.1",
"jwks-rsa": "^2.0.0",
"morgan": "^1.9.0",
"mongoose": "^8.8.3",
"plaid": "^18.1.0",
"ramda": "^0.25.0",
"react": "^16.5.0",
"react-dom": "^16.5.0",
"react-materialize": "^3.0.2",
"react-moment": "^0.7.0",
"react-router": "^6.0.0",
"react-scripts": "^5.0.0",
"redis": "^2.8.0",
"@snyk/protect": "latest"
},
"snyk": true
}