-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·63 lines (63 loc) · 1.77 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
{
"name": "node-reference-implementation",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node index.js",
"server": "nodemon --watch api index.js --ignore tests",
"client": "npm run start --prefix client",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"build": "NPM_CONFIG_PRODUCTION=false npm install --prefix client && npm run build --prefix client",
"test": "jest",
"format": "prettier --write 'api/**/*.{js,ts}'",
"lint": "eslint api",
"precommit": "lint-staged"
},
"lint-staged": {
"*.{js,ts}": [
"yarn format",
"yarn lint",
"git add"
]
},
"author": "Parthasarathy S",
"license": "MIT",
"dependencies": {
"app-root-path": "^2.1.0",
"body-parser": "^1.17.2",
"cookie-session": "^2.0.0-beta.2",
"cors": "^2.8.4",
"dotenv": "^6.0.0",
"express": "^4.15.3",
"jest": "^22.2.0",
"method-override": "^2.3.10",
"migrate-mongoose": "^3.2.2",
"mongoose": "^4.11.1",
"morgan": "^1.9.0",
"passport": "^0.3.2",
"passport-google-oauth20": "^1.0.0",
"path-parser": "^2.0.2",
"redis": "^2.8.0",
"uuid": "^3.2.1",
"winston": "^3.0.0"
},
"devDependencies": {
"concurrently": "^3.5.0",
"eslint": "^4.19.1",
"eslint-config-google": "^0.9.1",
"eslint-config-prettier": "^2.9.0",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-prettier": "^2.6.1",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-react": "^7.10.0",
"eslint-plugin-standard": "^3.1.0",
"husky": "^0.14.3",
"lint-staged": "^7.2.0",
"nodemon": "^1.17.5",
"prettier-standard": "^8.0.1"
}
}