-
Notifications
You must be signed in to change notification settings - Fork 63
/
package.json
65 lines (65 loc) · 1.44 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
{
"name": "stein-core",
"version": "0.0.2",
"homepage": "https://steinhq.com/",
"description": "Use Google Sheets as a no-setup data store",
"main": "index.js",
"scripts": {
"start": "pm2 start bin/pm2.config.js --env production",
"kill": "pm2 kill",
"dev": "cross-env NODE_ENV=development nodemon index.js"
},
"bin": {
"stein": "./bin/start-stein.js"
},
"keywords": [
"google sheets",
"database",
"REST",
"api",
"form"
],
"repository": {
"type": "git",
"url": "git://github.com/SteinHQ/Stein.git"
},
"author": "Stein <[email protected]>",
"license": "MIT",
"dependencies": {
"basic-auth": "^2.0.1",
"bcrypt": "^3.0.6",
"bluebird": "^3.5.1",
"body-parser": "^1.18.2",
"connect-mongo": "^2.0.3",
"cookie-parser": "^1.4.3",
"cors": "^2.8.4",
"dotenv": "^8.0.0",
"ejs": "^2.6.1",
"express": "^4.16.2",
"express-session": "^1.15.6",
"google-auth-library": "^2.0.0",
"googleapis": "^34.0.0",
"mongoose": "^5.3.0",
"ow": "^0.12.0",
"passport": "^0.4.0",
"passport-google-oauth": "2.0.0",
"pm2": "^3.5.1",
"request": "^2.88.0"
},
"devDependencies": {
"cross-env": "^5.2.0",
"errorhandler": "^1.5.0",
"nodemon": "^1.18.10",
"response-time": "^2.3.2"
},
"eslintConfig": {
"rules": {
"no-unused-vars": [
"error",
{
"argsIgnorePattern": "next"
}
]
}
}
}