-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.95 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.95 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
{
"name": "readr",
"version": "1.0.0",
"description": "Open source book suggestion",
"main": "index.js",
"scripts": {
"build": "npm run build:client-dev",
"build:client-dev": "webpack --config webpack.config.js --mode development --watch",
"build:client": "webpack --config webpack.config.js --mode development",
"start": "node server/index.js",
"test": "mocha --bail --reporter nyan test/index.test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CheapReaders/Readr.git"
},
"author": "CheapReaders",
"license": "ISC",
"bugs": {
"url": "https://github.com/CheapReaders/Readr/issues"
},
"homepage": "https://github.com/CheapReaders/Readr#readme",
"devDependencies": {
"@babel/cli": "^7.6.4",
"@babel/core": "^7.6.4",
"@babel/preset-env": "^7.6.3",
"@babel/preset-react": "^7.6.3",
"babel-loader": "^8.0.6",
"css-loader": "^1.0.1",
"eslint": "^6.6.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.16.0",
"eslint-plugin-react-hooks": "^1.7.0",
"style-loader": "^0.23.1",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.9.0"
},
"dependencies": {
"@material-ui/core": "^4.5.2",
"@material-ui/icons": "^4.5.1",
"@material-ui/styles": "^4.6.0",
"axios": "^0.19.0",
"body-parser": "^1.19.0",
"chai": "^4.2.0",
"cookie-session": "^1.3.3",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"lodash-es": "^4.17.15",
"mocha": "^6.2.2",
"passport": "^0.4.0",
"passport-google-oauth20": "^2.0.0",
"pg": "^7.12.1",
"prop-types": "^15.7.2",
"react": "^16.11.0",
"react-dom": "^16.11.0",
"react-feather": "^2.0.3",
"react-gesture-responder": "^2.1.0",
"react-router-dom": "^5.1.2",
"react-spring": "^8.0.27",
"react-use-gesture": "^6.0.14",
"sequelize": "^5.21.2"
}
}