-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.05 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.05 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
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
{
"name": "slotty",
"version": "0.0.1",
"description": " Online web app designed to help you get a slot in that hard to register for course!",
"main": "server/index.js",
"repository": "https://github.com/EvilKanoa/Slotty",
"author": "EvilKanoa <kanoa@kanoa.ca>",
"license": "GPL-3.0-only",
"private": true,
"proxy": "http://localhost:3001",
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "echo TODO: Testing && false && react-scripts test",
"eject": "react-scripts eject",
"server": "NODE_ENV=development nodemon server/index.js",
"prod": "NODE_ENV=production node server/index.js",
"worker": "NODE_ENV=production nodemon server/workerProcess.js",
"lint": "prettier --write {{src,server}/**/*.js,{src,server}/*.js,*.js}",
"pg": "docker run --rm --name pg-docker -e POSTGRES_PASSWORD=docker -e POSTGRES_USER=postgres -d -p 5432:5432 postgres",
"stop": "docker stop pg-docker",
"heroku-postbuild": "yarn build"
},
"engines": {
"node": ">=14",
"yarn": ">=1.21"
},
"prettier": {
"printWidth": 90,
"tabWidth": 2,
"singleQuote": true,
"trailingComma": "es5"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"@uifabric/icons": "^7.3.5",
"body-parser": "^1.19.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"graphql-request": "^1.8.2",
"lodash": "^4.17.15",
"morgan": "^1.9.1",
"nodemon": "^2.0.2",
"office-ui-fabric-react": "^7.90.0",
"pg": "^8.6.0",
"prop-types": "^15.7.2",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-expand-animated": "^1.0.1",
"react-scripts": "3.3.1",
"statuses": "^1.5.0",
"swagger-jsdoc": "^3.5.0",
"swagger-ui-express": "^4.1.3",
"twilio": "^3.39.2"
},
"devDependencies": {
"prettier": "^1.19.1"
}
}