-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (93 loc) · 2.71 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
{
"name": "booklist",
"version": "1.0.0",
"description": "Personal reading list tracker",
"main": "index.js",
"scripts": {
"build": "run-p build:client build:server",
"build:client": "npm run webpack -- --mode production",
"build:server": "npm run knex -- migrate:latest",
"start": "node server",
"test": "jest",
"test:watch": "jest --noStackTrace --watchAll",
"test:coverage": "jest --coverage",
"dev": "run-p dev:client dev:server",
"dev:client": "npm run webpack -- --watch",
"dev:server": "nodemon --watch server server/index.js",
"webpack": "webpack --config ./client/webpack.config.js",
"knex": "knex --knexfile ./server/db/knexfile.js",
"lint": "eslint --ext .js,.jsx ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/dajabe/booklist.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/dajabe/booklist/issues"
},
"homepage": "https://github.com/dajabe/booklist#readme",
"babel": {
"presets": [
"@babel/preset-typescript",
"@babel/preset-env",
"@babel/preset-react"
]
},
"eslintConfig": {
"extends": "eda/react",
"ignorePatterns": [
"bundle.js"
]
},
"devDependencies": {
"@babel/core": "^7.15.6",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/plugin-proposal-object-rest-spread": "^7.15.6",
"@babel/preset-env": "^7.15.6",
"@babel/preset-react": "^7.14.5",
"@babel/preset-typescript": "^7.17.12",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.3.0",
"@testing-library/user-event": "^14.2.1",
"babel-loader": "^8.2.2",
"css-loader": "^6.3.0",
"eslint": "^8.10.0",
"eslint-config-eda": "^1.2.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jest": "^26.1.1",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.29.4",
"jest": "^27.5.1",
"mini-css-extract-plugin": "^2.3.0",
"nodemon": "^2.0.15",
"npm-run-all": "^4.1.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-redux": "^8.0.2",
"react-router-dom": "^6.3.0",
"redux": "^4.2.0",
"sass": "^1.50.1",
"sass-loader": "12.6.0",
"style-loader": "^3.3.0",
"supertest": "^6.2.2",
"webpack": "^5.69.1",
"webpack-cli": "^4.9.2"
},
"dependencies": {
"@reduxjs/toolkit": "^1.8.3",
"dayjs": "^1.11.3",
"express": "^4.17.2",
"knex": "^2.1.0",
"pg": "^8.7.1",
"react-hook-form": "^7.33.1",
"react-icons": "^4.4.0",
"sqlite3": "^5.0.8",
"superagent": "7.1.1"
},
"browserslist": "> 2%, not dead"
}