-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.02 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 2.02 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "resy_service",
"version": "1.0.0",
"description": "Service for the reservation system",
"main": "bundle.js",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"build": "webpack --mode production",
"dev:react": "webpack -d --watch",
"startmon": "nodemon server/server.js",
"start": "node server/server.js",
"seed": "node server/seed.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/katable/resy_service.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/katable/resy_service/issues"
},
"homepage": "https://github.com/katable/resy_service#readme",
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/preset-env": "^7.1.0",
"@babel/preset-react": "^7.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"babel-loader": "^8.0.4",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"css-loader": "^1.0.1",
"enzyme": "^3.7.0",
"enzyme-adapter-react-16": "^1.6.0",
"enzyme-to-json": "^3.3.4",
"eslint": "^5.7.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.11.1",
"identity-obj-proxy": "^3.0.0",
"jest": "^23.6.0",
"jest-puppeteer": "^3.4.0",
"puppeteer": "^1.10.0",
"style-loader": "^0.23.1",
"webpack": "^4.23.1",
"webpack-cli": "^3.1.2"
},
"dependencies": {
"babel-plugin-react-css-modules": "^3.4.2",
"body-parser": "^1.18.3",
"bufferutil": "^4.0.0",
"express": "^4.16.4",
"mysql": "^2.16.0",
"prop-types": "^15.6.2",
"react": "^16.6.0",
"react-dom": "^16.6.0",
"styled-components": "^4.0.2"
},
"jest": {
"setupFiles": [
"./client/tests/setupTests.js"
],
"snapshotSerializers": [
"enzyme-to-json/serializer"
],
"moduleNameMapper": {
"^.+\\.(css|scss)$": "identity-obj-proxy"
},
"preset": "jest-puppeteer"
}
}