-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
131 lines (131 loc) · 3.84 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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
{
"name": "iMedia",
"version": "1.0.0",
"description": "coding challenge",
"engines": {
"node": "~16.14.0"
},
"main": "index.js",
"scripts": {
"dev": "react-scripts start",
"start": "serve -s public",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"build-client": "webpack",
"build-client-watch": "webpack -w",
"deploy": "script/deploy",
"heroku-token": "script/encrypt-heroku-auth-token.js",
"lint": "eslint ./ --ignore-path .gitignore",
"lint-fix": "npm run lint -- --fix",
"prepare": "if [ -d .git ]; then npm-merge-driver install; fi",
"prettify": "prettier --write \"**/*.{js,jsx,json,css,scss,md}\"",
"postinstall": "touch secrets.js",
"seed": "node script/seed.js",
"start-dev": "NODE_ENV='development' npm run build-client-watch & NODE_ENV='development' npm run start-server",
"start-server": "nodemon server -e html,js,scss --ignore public --ignore client"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx}": [
"prettier --write",
"npm run lint-fix",
"git add"
],
"*.{css,scss,json,md}": [
"prettier --write",
"git add"
]
},
"author": "Fullstack Academy of Code",
"license": "MIT",
"dependencies": {
"@material-ui/core": "^4.7.0",
"@material-ui/lab": "^4.0.0-alpha.33",
"axios": "^0.21.1",
"compression": "^1.7.3",
"connect-session-sequelize": "^6.0.0",
"express": "^4.16.4",
"express-session": "^1.15.1",
"history": "^4.9.0",
"morgan": "^1.9.1",
"passport": "^0.4.0",
"passport-google-oauth": "^2.0.0",
"pg": "^8.3.2",
"pg-hstore": "^2.3.2",
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-redux": "^7.0.1",
"react-router-dom": "^5.0.0",
"react-scripts": "^4.0.3",
"react-star-rating-component": "^1.4.1",
"react-toast-notifications": "^2.4.0",
"redux": "^4.0.1",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.3.0",
"sequelize": "^5.3.1",
"serve": "^13.0.2",
"socket.io": "^2.2.0"
},
"devDependencies": {
"@babel/core": "^7.4.3",
"@babel/plugin-proposal-class-properties": "7.4.0",
"@babel/plugin-proposal-decorators": "7.4.0",
"@babel/plugin-proposal-export-namespace-from": "7.2.0",
"@babel/plugin-proposal-function-sent": "7.2.0",
"@babel/plugin-proposal-json-strings": "7.2.0",
"@babel/plugin-proposal-numeric-separator": "7.2.0",
"@babel/plugin-proposal-throw-expressions": "7.2.0",
"@babel/plugin-syntax-dynamic-import": "7.2.0",
"@babel/plugin-syntax-import-meta": "7.2.0",
"@babel/polyfill": "^7.4.3",
"@babel/preset-env": "^7.4.3",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.4.0",
"axios-mock-adapter": "^1.16.0",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.5",
"chai": "^4.2.0",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.12.1",
"eslint": "^5.16.0",
"eslint-config-fullstack": "^6.0.0",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-react": "^7.12.4",
"git-url-parse": "^11.1.2",
"husky": "^1.3.1",
"lint-staged": "^8.1.5",
"mocha": "^6.1.4",
"nodemon": "^1.18.3",
"npm-merge-driver": "^2.3.5",
"prettier": "1.11.1",
"react-test-renderer": "^16.4.2",
"redux-devtools-extension": "^2.13.5",
"redux-mock-store": "^1.5.3",
"simple-git": "^1.121.0",
"supertest": "^4.0.2",
"webpack": "^4.16.4",
"webpack-cli": "^3.1.0",
"yaml": "^1.6.0"
},
"optionalDependencies": {
"win-node-env": "^0.6.1"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}