forked from Nomad-Widow-LLC/FEC
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
105 lines (105 loc) · 2.82 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "fec",
"version": "1.0.0",
"description": "Front End Capstone",
"main": "./server/index.js",
"dependencies": {
"accepts": "^1.3.8",
"array-flatten": "^1.1.1",
"axios": "^0.27.2",
"babel": "^6.23.0",
"bluebird": "^3.7.2",
"body-parser": "^1.20.0",
"bytes": "^3.1.2",
"call-bind": "^1.0.2",
"chai": "^4.3.6",
"cloudinary": "^1.30.0",
"content-disposition": "^0.5.4",
"content-type": "^1.0.4",
"cookie": "^0.5.0",
"cookie-signature": "^1.0.6",
"date-fns": "^2.28.0",
"debug": "^2.6.9",
"depd": "^2.0.0",
"destroy": "^1.2.0",
"dotenv": "^16.0.1",
"ee-first": "^1.1.1",
"encodeurl": "^1.0.2",
"escape-html": "^1.0.3",
"etag": "^1.8.1",
"express": "^4.18.1",
"finalhandler": "^1.2.0",
"forwarded": "^0.2.0",
"fresh": "^0.5.2",
"function-bind": "^1.1.1",
"get-intrinsic": "^1.1.1",
"has": "^1.0.3",
"has-symbols": "^1.0.3",
"http-errors": "^2.0.0",
"iconv-lite": "^0.4.24",
"imgbb-uploader": "^1.5.0",
"inherits": "^2.0.4",
"ipaddr.js": "^1.9.1",
"jest": "^28.1.0",
"media-typer": "^0.3.0",
"merge-descriptors": "^1.0.1",
"methods": "^1.1.2",
"mime": "^1.6.0",
"mime-db": "^1.52.0",
"mime-types": "^2.1.35",
"ms": "^2.0.0",
"negotiator": "^0.6.3",
"object-inspect": "^1.12.0",
"on-finished": "^2.4.1",
"parseurl": "^1.3.3",
"path-to-regexp": "^0.1.7",
"proxy-addr": "^2.0.7",
"qs": "^6.10.3",
"range-parser": "^1.2.1",
"raw-body": "^2.5.1",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"react-icons": "^4.3.1",
"safe-buffer": "^5.2.1",
"safer-buffer": "^2.1.2",
"send": "^0.18.0",
"serve-static": "^1.15.0",
"setprototypeof": "^1.2.0",
"side-channel": "^1.0.4",
"statuses": "^2.0.1",
"styled-components": "^5.3.5",
"toidentifier": "^1.0.1",
"type-is": "^1.6.18",
"unpipe": "^1.0.0",
"utils-merge": "^1.0.1",
"vary": "^1.1.2"
},
"scripts": {
"server-dev": "npx nodemon --watch server server/index.js",
"client-dev": "npx webpack --watch",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"start": "node server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Nomad-Widow-LLC/FEC.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Nomad-Widow-LLC/FEC/issues"
},
"homepage": "https://github.com/Nomad-Widow-LLC/FEC#readme",
"devDependencies": {
"@babel/core": "^7.17.12",
"@babel/preset-env": "^7.17.12",
"@babel/preset-react": "^7.17.12",
"@testing-library/react": "^13.2.0",
"babel-loader": "^8.2.5",
"eslint-plugin-react-hooks": "^4.5.0",
"mocha": "^10.0.0",
"webpack": "^5.72.1",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.9.0"
}
}