-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.66 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 1.66 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
{
"name": "example-app-todo-list",
"version": "1.0.0",
"description": "Simple todo list app for Pipedrive",
"main": "server.js",
"license": "MIT",
"private": true,
"scripts": {
"start": "react-scripts build && nodemon server.js",
"react:start": "PORT=3001 react-scripts start",
"react:build": "react-scripts build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pipedrive/example-apps.git"
},
"keywords": [],
"author": "",
"bugs": {
"url": "https://github.com/pipedrive/example-apps/issues"
},
"homepage": "./",
"dependencies": {
"@pipedrive/app-extensions-sdk": "^0.1.0",
"body-parser": "^1.20.3",
"express": "^4.22.1",
"express-async-errors": "^3.1.1",
"jsonwebtoken": "^9.0.3",
"jws": "^4.0.1",
"node-forge": "^1.4.0",
"pipedrive": "^17.1.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-scripts": "^5.0.1"
},
"devDependencies": {
"nodemon": "^2.0.20"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"proxy": "http://localhost:3000",
"overrides": {
"minimatch": "^3.1.4",
"flatted": "^3.4.1",
"ip": "^2.0.1",
"nth-check": "^2.0.1",
"semver": "^7.5.2",
"word-wrap": "^1.2.4",
"postcss": "^8.4.31",
"loader-utils": "^2.0.4",
"serialize-javascript": "^7.0.5",
"picomatch": "^2.3.2",
"brace-expansion": "^2.0.3",
"path-to-regexp": "0.1.13",
"yaml": "^1.10.3",
"@tootallnate/once": "^3.0.1",
"lodash": "^4.18.0"
}
}