-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
68 lines (68 loc) · 2.03 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
66
67
68
{
"name": "city-flocks-server",
"version": "2.0.0",
"description": "Some boilerplate code to get you started - get shakin'!",
"engines": {
"node": ">= 7.0.0"
},
"main": "index.js",
"scripts": {
"deploy": "script/deploy",
"heroku-token": "script/encrypt-heroku-auth-token",
"lint": "eslint ./ --ignore-path .gitignore",
"lint-fix": "npm run lint -- --fix",
"prepare": "if [ -d .git ]; then npm-merge-driver install; fi",
"prettify": "prettier --write \"**/*.{js,jsx,json,css,scss,md}\"",
"postinstall": "touch secrets.js",
"seed": "node script/seed.js",
"start": "node server",
"start-dev": "NODE_ENV='development' npm run build-client-watch & NODE_ENV='development' npm run start-server",
"start-server": "nodemon server -e html,js,scss --ignore public --ignore client",
"test": "NODE_ENV='test' mocha \"./server/**/*.spec.js\" \"./client/**/*.spec.js\" \"./script/**/*.spec.js\""
},
"lint-staged": {
"*.{js,jsx}": [
"prettier --write",
"npm run lint-fix",
"git add"
],
"*.{css,scss,json,md}": [
"prettier --write",
"git add"
]
},
"author": "Fullstack Academy of Code",
"license": "MIT",
"dependencies": {
"compression": "^1.7.3",
"connect-session-sequelize": "^6.0.0",
"express": "^4.16.4",
"express-session": "^1.15.1",
"history": "^4.9.0",
"morgan": "^1.9.1",
"passport": "^0.4.0",
"passport-google-oauth": "^2.0.0",
"pg": "^7.9.0",
"pg-hstore": "^2.3.2",
"prop-types": "^15.7.2",
"redis": "^2.8.0",
"sequelize": "^5.3.1",
"socket.io": "^2.2.0"
},
"devDependencies": {
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.5",
"chai": "^4.2.0",
"eslint": "^5.16.0",
"eslint-config-fullstack": "^6.0.0",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-react": "^7.12.4",
"husky": "^1.3.1",
"lint-staged": "^8.1.5",
"mocha": "^6.1.2",
"nodemon": "^1.18.3",
"npm-merge-driver": "^2.3.5",
"prettier": "1.11.1",
"supertest": "^4.0.2"
}
}