-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.2 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.2 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
{
"name": "@appgeist/example-restful-next-api-employees",
"version": "1.1.7",
"description": "A simple example to demonstrate the usage of @appgeist/restful-next-api",
"license": "ISC",
"private": true,
"scripts": {
"dev": "next",
"lint": "eslint .",
"build": "yarn version --patch && next build",
"start": "next start"
},
"dependencies": {
"@appgeist/exec": "^1.1.3",
"@appgeist/file-exists": "^1.1.3",
"@appgeist/restful-next-api": "^1.5.6",
"delay": "^4.3.0",
"http-status-codes": "^1.4.0",
"knex": "^0.21.0",
"next": "^9.3.5",
"objection": "^2.1.3",
"pluralize": "^8.0.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"sqlite3": "^4.1.1",
"yup": "^0.28.4"
},
"devDependencies": {
"@appgeist/eslint-config-react": "^1.4.2",
"@babel/plugin-proposal-export-default-from": "^7.8.3",
"@babel/plugin-proposal-optional-chaining": "^7.9.0",
"@types/delay": "^3.1.0",
"@types/knex": "^0.16.1",
"@types/node": "^13.13.2",
"@types/pluralize": "^0.0.29",
"@types/yup": "^0.28.0",
"babel-plugin-root-import": "^6.5.0",
"babel-plugin-transform-imports": "^2.0.0",
"eslint-plugin-react-hooks": "^3.0.0"
}
}