-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.55 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
{
"name": "deletrius",
"version": "1.0.0",
"description": "Quickly find and delete old tweets in bulk",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "babel-node server/server.js",
"start:server": "nodemon server/server.js --exec babel-node --ignore client",
"start:client": "cd client && yarn start",
"start:dev": "concurrently \"yarn start:server\" \"yarn start:client\"",
"heroku-postbuild": "cd client && npm install --only=dev && npm install && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GideonShils/deletrius.git"
},
"author": "Gideon Shils",
"license": "ISC",
"bugs": {
"url": "https://github.com/GideonShils/deletrius/issues"
},
"homepage": "https://github.com/GideonShils/deletrius#readme",
"dependencies": {
"body-parser": "^1.18.3",
"cookie-parser": "^1.4.3",
"cookie-session": "^2.0.0-beta.3",
"cors": "^2.8.4",
"dotenv": "^5.0.1",
"express": "^4.16.3",
"express-session": "^1.15.6",
"helmet": "^3.13.0",
"moment": "^2.22.2",
"mongoose": "^5.11.15",
"morgan": "^1.9.1",
"multer": "^1.3.1",
"passport": "^0.4.1",
"passport-twitter": "^1.0.4",
"path": "^0.12.7",
"twit": "^2.2.11"
},
"devDependencies": {
"@babel/cli": "^7.12.17",
"@babel/core": "^7.12.17",
"@babel/node": "^7.12.17",
"@babel/preset-env": "^7.12.17",
"concurrently": "^3.6.1",
"cors": "^2.8.4",
"nodemon": "^1.18.4"
},
"engines": {
"node": "14.15.4"
}
}