-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.56 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.56 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
{
"name": "virtualtransactionapp",
"private": true,
"description": "Virtual Transaction App for allowing students to request documents to the school and provide requirements in return. School admins can validate those requests.",
"author": {
"name": "Katherine Gragg",
"email": "katherinegragg05@gmail.com"
},
"scripts": {
"dev": "meteor --settings settings-dev.json",
"start": "meteor run",
"test": "meteor test --once --driver-package meteortesting:mocha",
"test-app": "TEST_WATCH=1 meteor test --full-app --driver-package meteortesting:mocha",
"visualize": "meteor --production --extra-packages bundle-visualizer"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.299.0",
"@babel/runtime": "^7.15.4",
"@headlessui/react": "^1.7.13",
"@react-icons/all-files": "^4.1.0",
"autoprefixer": "^10.4.4",
"axios": "^1.3.4",
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"lodash": "^4.17.21",
"meteor-node-stubs": "^1.2.1",
"moment": "^2.29.4",
"multer": "^1.4.5-lts.1",
"multer-s3": "^3.0.1",
"postcss": "^8.4.12",
"postcss-load-config": "^3.1.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-dropzone": "^14.2.3",
"react-router-dom": "^6.8.1",
"react-toastify": "^9.1.1",
"react-transition-group": "^4.4.5",
"tailwindcss": "^3.0.23",
"uuid": "^9.0.0"
},
"meteor": {
"mainModule": {
"client": "client/main.jsx",
"server": "server/main.js"
},
"testModule": "tests/main.js"
},
"devDependencies": {
"@types/mocha": "^10.0.1"
}
}