-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.17 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
{
"name": "vr-carousel",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest",
"build": "webpack --config webpack.prod.js",
"start": "NODE_ENV=production ES_HOST=172.31.20.231 node --max-old-space-size=768 ./server/index.js",
"start-dev": "nodemon ./server/index.js",
"seed": "node ./server/db/seed.js",
"csv": "node ./server/db/seedMariaDb.js",
"mariadb": "mysql -u gabrielsong < server/db/schema.sql",
"elastic": "node ./server/db/seedElasticsearch.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Draftbnb/imageCarousel.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Draftbnb/imageCarousel/issues"
},
"homepage": "https://github.com/Draftbnb/imageCarousel#readme",
"dependencies": {
"@elastic/elasticsearch": "^7.6.0",
"@testing-library/jest-dom": "^5.1.0",
"@testing-library/react": "^9.4.0",
"array.prototype.flatmap": "^1.2.3",
"axios": "^0.19.2",
"compression": "^1.7.4",
"elastic-apm-node": "^3.4.0",
"express": "^4.17.1",
"mariadb": "^2.2.0",
"mongoose": "^5.9.2",
"newrelic": "^6.4.1",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"regenerator-runtime": "^0.13.3",
"styled-components": "^5.0.0",
"svg-inline-loader": "^0.8.0"
},
"devDependencies": {
"@babel/core": "^7.8.3",
"@babel/preset-env": "^7.8.3",
"@babel/preset-react": "^7.8.3",
"babel-loader": "^8.0.6",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"enzyme-to-json": "^3.4.3",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.18.0",
"eslint-plugin-react-hooks": "^1.7.0",
"fast-csv": "^4.1.0",
"jest": "^25.1.0",
"morgan": "^1.9.1",
"react-inlinesvg": "^1.2.0",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10",
"webpack-merge": "^4.2.2"
},
"babel": {
"presets": [
"@babel/env",
"@babel/react"
]
},
"jest": {
"snapshotSerializers": [
"enzyme-to-json/serializer"
]
}
}