-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
77 lines (77 loc) · 2.35 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
{
"name": "PartyPal",
"version": "1.0.0",
"description": "",
"main": "./client/index.js",
"scripts": {
"build": "webpack",
"build:dev": "npm run build -- --watch --mode=development",
"seed": "node seed.js",
"test": "mocha ./tests/*.spec.js --compilers js:babel-register",
"start": "node server",
"start-dev": "webpack -w & JWT=shh nodemon server -e html,js,scss --ignore public --ignore client",
"start:dev:logger": "LOGGING=true npm run start-dev",
"start:dev:seed": "SEED=true npm run start:dev",
"start-server": "JWT=shh nodemon server -e html,js,scss --ignore public --ignore client",
"test:dev:models": "npm run test:dev -- --grep=model",
"test:dev:routes": "npm run test:dev -- --grep=route"
},
"keywords": [],
"author": "Siyun Feng, Jane Yeh, Irais Valenzuela",
"license": "ISC",
"dependencies": {
"@material-ui/core": "^4.12.4",
"@material-ui/icons": "^4.11.3",
"@material-ui/lab": "^4.0.0-alpha.61",
"@material-ui/styles": "^4.11.5",
"axios": "^1.1.3",
"bcrypt": "^5.1.0",
"bootstrap": "^5.2.2",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"graphql": "^14.3.0",
"graphql-request": "^5.0.0",
"history": "^5.3.0",
"http": "^0.0.1-security",
"jsonwebtoken": "^8.5.1",
"moment": "^2.29.4",
"morgan": "^1.10.0",
"node": "^19.0.0",
"pg": "^8.8.0",
"pg-hstore": "^2.3.4",
"react-bootstrap": "^2.6.0",
"react-bootstrap-icons": "^1.10.2",
"react-is": "^16.13.1",
"react-select": "^5.7.0",
"sequelize": "^6.25.3",
"styled-components": "^5.3.6",
"url": "^0.11.0"
},
"devDependencies": {
"@babel/core": "^7.19.6",
"@babel/preset-env": "^7.19.4",
"@babel/preset-react": "^7.18.6",
"babel-loader": "^8.2.2",
"babel-register": "^6.26.0",
"body-parser": "^1.20.1",
"chai": "^4.3.6",
"css-loader": "^6.7.1",
"enzyme": "^3.11.0",
"mocha": "^6.2.3",
"nodemon": "^2.0.20",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-redux": "^7.0.1",
"react-router-dom": "^5.0.0",
"react-test-renderer": "^16.4.2",
"redux": "^4.0.1",
"redux-devtools-extension": "^2.13.5",
"redux-logger": "^3.0.6",
"redux-mock-store": "^1.5.3",
"redux-thunk": "^2.3.0",
"style-loader": "^3.3.1",
"supertest": "^6.3.1",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0"
}
}