forked from ALPHACamp/twitter-api-2020
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1.25 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
{
"name": "test",
"version": "1.0.0",
"description": "",
"main": "app.js",
"scripts": {
"start": "NODE_ENV=development node app.js",
"dev": "nodemon app.js",
"lint": "eslint \"**/*.js\" --fix",
"test": "mocha test --exit --recursive --timeout 5000"
},
"author": "",
"license": "ISC",
"dependencies": {
"bcrypt-nodejs": "0.0.3",
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.3",
"chai": "^4.2.0",
"connect-flash": "^0.1.1",
"cors": "^2.8.5",
"dotenv": "^16.0.0",
"express": "^4.16.4",
"express-handlebars": "^3.0.0",
"express-session": "^1.15.6",
"faker": "^4.1.0",
"imgur": "^1.0.2",
"jsonwebtoken": "^8.5.1",
"method-override": "^3.0.0",
"mocha": "^6.0.2",
"multer": "^1.4.4",
"mysql2": "^1.6.4",
"passport": "^0.4.0",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"sequelize": "^4.42.0",
"sequelize-cli": "^5.5.0",
"sinon": "^7.2.3",
"sinon-chai": "^3.3.0"
},
"devDependencies": {
"eslint": "^8.9.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"sequelize-test-helpers": "^1.0.7",
"supertest": "^3.3.0"
}
}