-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.04 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.04 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
{
"name": "e-library",
"version": "1.0.0",
"description": "e-library is a web-based digital library application service",
"main": "server/index.js",
"engines": {
"npm": ">=8.11.0",
"node": ">=16.14.1"
},
"scripts": {
"server-dev": "nodemon server/index.js",
"server-start": "node server/index.js",
"client-dev": "webpack serve --mode=development --config ./webpack.config.js --open",
"client-build": "webpack --mode=production",
"dev": "concurrently \"npm run server-dev\" \"npm run client-dev\"",
"heroku-postbuild": "npm run client-build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/febriadj/e-library.git"
},
"keywords": [
"e-library"
],
"author": "Febriadji <iamfebriadji@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/febriadj/e-library/issues"
},
"homepage": "https://github.com/febriadj/e-library#readme",
"devDependencies": {
"@babel/core": "^7.16.5",
"@babel/plugin-transform-runtime": "^7.16.5",
"@babel/preset-env": "^7.16.5",
"@babel/preset-react": "^7.16.5",
"babel-loader": "^8.2.3",
"babel-plugin-wildcard": "^7.0.0",
"css-loader": "^6.5.1",
"eslint": "^8.5.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"file-loader": "^6.2.0",
"nodemon": "^2.0.15",
"style-loader": "^3.3.1",
"webpack": "^5.65.0",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.7.1"
},
"dependencies": {
"bcrypt": "^5.0.1",
"boxicons": "^2.1.1",
"chart.js": "^3.7.0",
"concurrently": "^6.5.1",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.2",
"jsonwebtoken": "^8.5.1",
"moment": "^2.29.1",
"mysql2": "^2.3.3",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-redux": "^7.2.6",
"react-router-dom": "^6.2.1",
"redux": "^4.1.2",
"sequelize": "^7.0.0-alpha.2",
"uuid": "^8.3.2"
}
}