-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 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
{
"name": "step-node-starter",
"version": "1.0.0",
"description": "Donatia app",
"main": "index.js",
"scripts": {
"create-env-dev": "printenv > .env.dev",
"create-env-prod": "printenv > .env.prod",
"test": "NODE_ENV=testing ./node_modules/.bin/mocha --timeout 60000 --exit",
"start": "NODE_ENV=production node app.js",
"dev": "NODE_ENV=development node app.js",
"lint": "eslint --fix .",
"format": "prettier --write .",
"lint-check": "eslint .",
"format-check": "prettier --check ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/ccyang314/step-node-starter.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/ccyang314/step-node-starter/issues"
},
"homepage": "https://github.com/ccyang314/step-node-starter#readme",
"dependencies": {
"@google-cloud/firestore": "^4.0.0",
"cookie-session": "^1.4.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-handlebars": "^4.0.4",
"node-fetch": "^2.6.1",
"passport": "^0.4.1",
"passport-google-oauth20": "^2.0.0"
},
"devDependencies": {
"chai": "^4.2.0",
"ember-template-lint": "^2.9.0",
"eslint": "^7.4.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-hbs": "^1.0.0",
"firestore-mock": "^1.0.4",
"mocha": "^8.0.1",
"nodemailer": "^6.4.10",
"prettier": "2.0.5",
"request": "^2.88.2"
}
}