forked from Data-driven-Duckies/shy-bi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
111 lines (111 loc) · 3.25 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "shy-bi",
"version": "1.0.0",
"description": "A dating app for shy bi-sexuals and bi-curious people that uses React for fast performance and Neo4j for relational data storage.",
"main": "server/server.js",
"scripts": {
"dev": "npm-run-all build:server build:styles build -p start:server watch:styles watch:src watch:server",
"build": "next build",
"build:server": "rimraf dist && babel server --out-dir dist --source-maps",
"build:styles": "sass styles/app.scss .next/static/style.css",
"start:server": "nodemon -r dotenv/config dist/server.js",
"watch:server": "chokidar 'server/**/*' -c 'npm run build:server'",
"watch:src": "chokidar 'src/**/*' 'pages/**' -c 'npm run build'",
"watch:styles": "chokidar 'styles/**/*.scss' -c 'npm run build:styles'",
"commit": "npx git-cz"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Data-driven-Duckies/shy-bi.git"
},
"author": "So Jung, Justin, Peter",
"license": "MIT",
"bugs": {
"url": "https://github.com/Data-driven-Duckies/shy-bi/issues"
},
"homepage": "https://github.com/Data-driven-Duckies/shy-bi#readme",
"dependencies": {
"@material-ui/core": "^4.1.1",
"@material-ui/icons": "^4.2.0",
"axios": "^0.15.3",
"babel-plugin-inline-react-svg": "^1.1.0",
"babel-plugin-transform-inline-environment-variables": "^0.4.3",
"bcryptjs": "^2.4.3",
"body-parser": "^1.15.2",
"chokidar-cli": "^1.2.2",
"classnames": "^2.2.6",
"cookie-parser": "^1.4.4",
"debug": "^4.1.1",
"dotenv": "^2.0.0",
"exenv": "^1.2.2",
"express": "^4.14.0",
"final-form": "^4.15.0",
"jsonwebtoken": "^7.2.1",
"lodash.range": "^3.2.0",
"morgan": "^1.7.0",
"neo4j-driver": "^1.7.5",
"next": "^8.1.0",
"next-redux-wrapper": "^3.0.0-alpha.3",
"npm-run-all": "^4.1.5",
"passport": "^0.3.2",
"passport-facebook": "^2.1.1",
"passport-local": "^1.0.0",
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-dropzone": "^3.8.0",
"react-final-form": "^6.2.1",
"react-input-range": "^1.3.0",
"react-redux": "^5.0.1",
"redux": "^3.6.0",
"redux-logger": "^2.7.4",
"redux-thunk": "^2.1.0",
"rimraf": "^2.6.3",
"sass": "^1.21.0",
"superagent": "^3.3.1"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"@babel/preset-react": "^7.0.0",
"commitizen": "^2.9.2",
"cz-conventional-changelog": "^1.2.0",
"eslint": "^6.0.1",
"eslint-config-airbnb": "^13.0.0",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^6.8.0",
"jest": "17.0.2",
"nodemon": "^1.11.0",
"whatwg-fetch": "1.0.0"
},
"directories": {
"test": "test"
},
"eslintConfig": {
"parser": "babel-eslint",
"rules": {
"strict": 0,
"max-len": [
"error",
{
"code": 125,
"comments": 125
}
]
},
"extends": "airbnb",
"env": {
"browser": true,
"node": true
}
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
}
}