-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 809 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 809 Bytes
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
{
"name": "wikigame",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "tsc",
"createdb": "npx mikro-orm schema:create -r",
"start": "node dist/index.js"
},
"author": "Nashoba24",
"license": "ISC",
"dependencies": {
"@types/node": "^14.0.14",
"@types/request": "^2.48.5",
"@types/socket.io": "^2.1.11",
"bcrypt": "^5.0.0",
"body-parser": "^1.19.0",
"cookie-parser": "^1.4.5",
"cpx": "^1.5.0",
"ejs": "^3.1.5",
"express": "^4.17.1",
"mikro-orm": "^3.6.15",
"request": "^2.88.2",
"socket.io": "^2.3.0",
"sqlite3": "^4.2.0",
"ts-node": "^8.10.2"
},
"mikro-orm": {
"useTsNode": true,
"configPaths": [
"./src/mikro-orm.config.ts",
"./dist/mikro-orm.config.js"
]
}
}