-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.05 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
{
"name": "soapbox-apps-server",
"version": "1.0.0",
"main": "build/app.js",
"license": "MIT",
"scripts": {
"start": "NODE_ENV=production node build/app.js ",
"dev": "nodemon -r dotenv/config app.ts",
"build": "tsc --project ./"
},
"dependencies": {
"@soapboxsocial/minis.js": "^2.3.0",
"app-root-path": "^3.0.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"helmet": "^4.4.1",
"isomorphic-unfetch": "^3.1.0",
"lodash.samplesize": "^4.2.0",
"lodash.shuffle": "^4.2.0",
"node-fetch": "^2.6.1",
"socket.io": "^4.0.1",
"winston": "^3.3.3"
},
"devDependencies": {
"@types/app-root-path": "^1.2.4",
"@types/compression": "^1.7.0",
"@types/cors": "^2.8.10",
"@types/express": "^4.17.11",
"@types/lodash.samplesize": "^4.2.6",
"@types/lodash.shuffle": "^4.2.6",
"@types/node": "^14.14.35",
"@types/node-fetch": "^2.5.8",
"nodemon": "^2.0.7",
"prettier": "^2.2.1",
"ts-node": "^9.1.1",
"typescript": "^4.2.3"
}
}