-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
70 lines (70 loc) · 2 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
{
"name": "tar-heel-calendar",
"version": "0.0.0",
"private": false,
"engines": {
"node": "v12.16.0",
"npm": "6.13.4"
},
"dependencies": {
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.5.0",
"@testing-library/user-event": "^7.2.1",
"axios": "^0.21.0",
"body-parser": "^1.19.0",
"bulma": "^0.9.1",
"cookie-parser": "^1.4.5",
"express": "^4.17.1",
"express-favicon": "^2.0.1",
"mysql": "^2.18.1",
"path": "^0.12.7",
"react": "^16.14.0",
"react-bulma-components": "^3.4.0",
"react-dom": "^16.14.0",
"react-icons": "^3.11.0",
"react-scripts": "3.4.3"
},
"scripts": {
"start": "npm run build && node src/server.js",
"start-client": "react-scripts start",
"start-server": "node src/server.js",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"create-database": "node scripts/create/createDatabase.js",
"create-tables": "node scripts/create/createTables.js",
"drop-tables": "node scripts/delete/dropTables.js",
"create-sample-data": "node scripts/create/createSampleData.js",
"update-tables1": "node scripts/modify/updateTables1.js"
},
"eslintConfig": {
"extends": "tar-heel-calendar"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"description": "This is our final project for COMP 426: Modern Web Programming. It is under development.",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/calendar-gang/tar-heel-calendar.git"
},
"keywords": [
"calendar"
],
"author": "Victoria Hoffman, Alfred Mathew, Eric Schneider, Ezri White",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/calendar-gang/tar-heel-calendar/issues"
},
"homepage": "https://tar-heel-calendar.herokuapp.com/"
}