-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.82 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.82 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": "bookshelf-react-express-sqlite-app",
"version": "1.0.0",
"description": "App for collecting books built with React, Express and SQLite.",
"author": {
"name": "Alex Devero",
"url": "https://alexdevero.com"
},
"repository": {
"type": "git",
"url": "https://github.com/alexdevero/bookshelf-react-express-sqlite-app"
},
"homepage": "https://github.com/alexdevero/bookshelf-react-express-sqlite-app",
"bugs": {
"url": "https://github.com/alexdevero/bookshelf-react-express-sqlite-app/issues"
},
"private": false,
"license": "MIT",
"keywords": [
"app",
"books",
"express",
"javascript",
"react",
"sqlite",
"typescript"
],
"browserslist": [
"last 7 versions",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"engines": {
"node": ">=10.0",
"npm": ">=6.0",
"yarn": ">=1.1.0"
},
"main": "src/index.tsx",
"prox": "http://localhost:4001",
"scripts": {
"build": "node ./buildScript",
"build-front": "react-scripts build",
"eject": "react-scripts eject",
"start-server": "nodemon server/server.js --watch server/*",
"start-front": "react-scripts start",
"start": "concurrently \"npm run start-server\" \"npm run start-front\" --kill-others --kill-others-on-fail",
"test": "react-scripts test --env=jsdom"
},
"dependencies": {
"axios": "1.6.0",
"body-parser": "1.19.0",
"compression": "1.7.4",
"cors": "2.8.5",
"express": "4.17.1",
"helmet": "3.22.0",
"knex": "2.4.0",
"react": "16.13.1",
"react-dom": "16.13.1"
},
"devDependencies": {
"@types/express": "4.17.6",
"@types/react": "16.9.34",
"@types/react-dom": "16.9.6",
"concurrently": "5.1.0",
"nodemon": "2.0.3",
"react-scripts": "3.4.1",
"sqlite3": "4.1.1",
"typescript": "3.8.3"
}
}