-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.91 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.91 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
{
"name": "webpack-setup",
"version": "1.0.0",
"description": "Tripadvisor mock webpage project",
"author": "Tina Xing",
"license": "UNLICENSED",
"scripts": {
"react-dev": "webpack --watch",
"start": "node server/index.js",
"test": "jest",
"test-watch": "jest --watch",
"test-coverage": "jest --coverage --colors",
"seed": "mysql -u root -p <db/schema.sql && node db/dbseed",
"seed:postgres": "psql -U postgres -f db_postgres/schema.sql",
"build-docker": "bash buildDocker.bash"
},
"dependencies": {
"axios": "^0.19.2",
"babel-loader": "^8.1.0",
"babel-polyfill": "^6.26.0",
"bluebird": "^3.7.2",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"css-loader": "^3.5.3",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"express": "^4.17.1",
"faker": "^4.1.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^25.5.2",
"jsdom": "^16.2.2",
"mongoose": "^5.9.10",
"morgan": "^1.10.0",
"mysql": "^2.18.1",
"newrelic": "^6.8.0",
"path": "^0.12.7",
"pg": "^8.2.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"style-loader": "^1.2.1",
"underscore": "^1.10.2",
"webpack": "^4.43.0"
},
"devDependencies": {
"@babel/preset-env": "^7.9.6",
"@babel/preset-react": "^7.9.4",
"babel-core": "^6.23.1",
"babel-jest": "^25.5.1",
"babel-preset-react": "^6.23.0",
"compression": "^1.7.4",
"compression-webpack-plugin": "^4.0.0",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^2.5.1",
"jest-enzyme": "^7.1.2",
"mysql-bluebird": "0.0.3",
"uglifyjs-webpack-plugin": "^2.2.0",
"webpack-bundle-analyzer": "^3.7.0",
"webpack-cli": "^3.3.11"
}
}