-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
97 lines (97 loc) · 2.52 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
{
"name": "opentab",
"version": "1.0.0",
"description": "app for round payment management at the pub, coffee shop, etc...",
"main": "src/index.js",
"keywords": [],
"author": "Yetkin Ergun",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/Team-OpenTab/opentab.git"
},
"scripts": {
"demon": "nodemon server.js",
"test": "jest",
"dev": "webpack --mode development",
"build": "webpack --mode production",
"prettier": "prettier --write src/**/*.js",
"lint": "eslint --fix src/",
"lint:write": "eslint --fix src/",
"start": "node server.js",
"heroku-postbuild": "npm run build"
},
"babel": {
"presets": [
"babel-preset-react",
"babel-preset-env"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.(js|jsx)": [
"npm run lint:write",
"git add"
]
},
"dependencies": {
"bcrypt": "^3.0.2",
"body-parser": "^1.18.3",
"classnames": "^2.2.6",
"dateformat": "^3.0.3",
"dotenv": "^6.1.0",
"event-stream": "3.3.4",
"express": "^4.16.4",
"hbs": "^4.0.1",
"node": "10.9.0",
"pg-promise": "^8.5.1",
"prettier-eslint": "^8.8.2",
"prop-types": "^15.6.2",
"react": "^16.6.0",
"react-dom": "^16.6.0",
"react-redux": "^5.1.0",
"redux": "^4.0.1",
"redux-devtools-extension": "^2.13.5",
"redux-mock-store": "^1.5.3",
"redux-persist": "^5.10.0",
"redux-thunk": "^2.3.0",
"socket.io": "^2.1.1",
"socket.io-client": "^2.1.1",
"vh-check": "^2.0.5"
},
"devDependencies": {
"@babel/core": "^7.1.2",
"babel-eslint": "^8.2.3",
"babel-jest": "^22.4.4",
"babel-loader": "^7.1.5",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"css-loader": "^0.28.11",
"enzyme": "^3.7.0",
"enzyme-adapter-react-16": "^1.6.0",
"eslint-config-airbnb": "^17.0.0",
"eslint-config-jest-enzyme": "^6.0.2",
"eslint-plugin-babel": "^5.1.0",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-jest": "^21.18.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-prettier": "^2.6.0",
"eslint-plugin-react": "^7.9.1",
"husky": "^1.1.2",
"identity-obj-proxy": "^3.0.0",
"jest": "^22.4.4",
"jest-fetch-mock": "^1.6.6",
"lint-staged": "^7.3.0",
"node-sass": "^4.10.0",
"nodemon": "^1.18.6",
"react-test-renderer": "^16.6.0",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"webpack": "^4.20.2",
"webpack-cli": "^3.1.1"
}
}