This repository was archived by the owner on Jun 27, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.35 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.35 KB
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": "server",
"version": "1.0.0",
"description":
"A website for UC Berkeley Pi Sigma Epsilon, Zeta Chi chapter.",
"main": "index.js",
"engines": {
"node": "8.9.3",
"npm": "5.6.0"
},
"license": "MIT",
"scripts": {
"precommit": "lint-staged",
"start": "node index.js",
"server": "nodemon index.js",
"client": "cd client && npm run start",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"build": "npm run build --prefix client",
"heroku-postbuild":
"NPM_CONFIG_PRODUCTION=false && npm install --prefix client && npm run build --prefix client"
},
"lint-staged": {
"**/*.{js,jsx,json,css}": [
"prettier --single-quote --write",
"prettier --print-width 80 --write",
"prettier --use-tabs --write",
"prettier --tab-width 2 --write",
"git add"
],
"**/*.md": ["prettier --parser markdown", "git add"]
},
"repository": {
"type": "git",
"url": "git+https://github.com/BerkeleyPSE/BerkeleyPSE.github.io.git"
},
"author": "Rahul Rangnekar",
"dependencies": {
"berkeleypse-schemas": "1.3.0",
"body-parser": "^1.18.2",
"express": "^4.16.3",
"mongoose": "^5.0.11"
},
"devDependencies": {
"concurrently": "^3.5.1",
"husky": "^0.14.3",
"lint-staged": "^7.0.0",
"nodemon": "^1.17.2",
"prettier": "^1.11.1"
}
}