-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
47 lines (47 loc) · 1.37 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
{
"name": "testapp",
"version": "1.0.0",
"description": "native application",
"main": "./client/public/index.html",
"scripts": {
"install-all": "./install-all.sh",
"start": "docker-compose down && docker-compose build && docker-compose up",
"deploy": "sudo docker-compose down && sudo docker-compose build && sudo docker-compose up",
"test": "jest --coverage",
"server": "cd server; npm start",
"client": "cd client; npm start",
"dev": "concurrently 'npm run server' 'npm run client'"
},
"author": "",
"license": "ISC",
"dependencies": {
"@capacitor/android": "^5.6.0",
"@capacitor/cli": "^5.6.0",
"@capacitor/core": "^5.6.0",
"@capacitor/ios": "^5.6.0",
"@emailjs/browser": "^4.4.1",
"@react-navigation/native-stack": "^6.9.26",
"@xmldom/xmldom": "^0.8.10",
"axios": "^1.6.2",
"bcrypt": "^5.1.1",
"bcryptjs": "^2.4.3",
"cheerio": "^1.0.0-rc.12",
"concurrently": "8.2.2",
"cors": "^2.8.5",
"express": "^4.18.2",
"express-session": "^1.17.3",
"mongoose": "^8.1.1",
"passport": "^0.7.0",
"passport-local": "^1.0.0",
"playwright": "^1.42.1",
"react-native-vector-icons": "^10.1.0",
"vue": "^3.3.11",
"vue-router": "^4.2.5",
"xmlbuilder": "^15.1.1"
},
"devDependencies": {
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"supertest": "^6.3.4"
}
}