-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 2.81 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
{
"name": "forest",
"version": "0.4.0",
"description": "Forest",
"main": "server.ts",
"scripts": {
"start": "node server.ts",
"watch": "webpack --watch",
"build": "NODE_ENV=production webpack --stats-error-details",
"test": "mocha --require babel-mocha.js",
"ios sync": "npx cap sync ios",
"ios copy": "npx cap copy ios",
"android sync": "npx cap sync android",
"android copy": "npx cap copy android",
"outdated": "npm outdated"
},
"author": "mpakunderscore",
"license": "ISC",
"devDependencies": {
"@babel/plugin-transform-react-jsx": "^7.21.5",
"@babel/plugin-transform-runtime": "^7.21.4",
"@babel/preset-env": "^7.21.5",
"@babel/preset-react": "^7.18.6",
"@capacitor/android": "^5.0.3",
"@capacitor/app": "^5.0.2",
"@capacitor/cli": "^5.0.3",
"@capacitor/clipboard": "^5.0.2",
"@capacitor/core": "^5.0.3",
"@capacitor/haptics": "^5.0.2",
"@capacitor/ios": "^5.0.3",
"@capacitor/keyboard": "^5.0.2",
"@capacitor/local-notifications": "^5.0.2",
"@capacitor/share": "^5.0.2",
"@capacitor/status-bar": "^5.0.2",
"@ionic/react": "^7.0.7",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@types/jest": "^29.5.1",
"@types/node": "^20.2.1",
"@types/react": "^18.2.6",
"@types/react-dom": "^18.2.4",
"babel-loader": "^9.1.2",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.7.4",
"less-loader": "^11.1.0",
"simplex-noise": "^4.0.1",
"stream-browserify": "^3.0.0",
"style-loader": "^3.3.3",
"ts-loader": "^9.4.2",
"webpack": "^5.83.1",
"webpack-cli": "^5.1.1"
},
"dependencies": {
"@capacitor-community/speech-recognition": "^5.0.0",
"axios": "^1.4.0",
"chart.js": "^4.3.0",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"openai": "^3.2.1",
"path": "^0.12.7",
"pg": "^8.11.0",
"react": "^18.2.0",
"react-chartjs-2": "^5.2.0",
"react-dom": "^18.2.0",
"react-test-renderer": "^18.2.0",
"sequelize": "^6.31.1",
"socket.io": "^4.6.1",
"socket.io-client": "^4.6.1",
"typescript": "^5.0.4",
"worldmap-generator": "^0.9.2"
},
"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"
]
}
}