forked from heroku-examples/salesforce-streams-nodejs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 844 Bytes
/
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
{
"name": "salesforce-streams",
"version": "1.0.0",
"description": "A Node.js + jsforce app that displays a feed of Salesforce activity using CDC (change-data capture)",
"scripts": {
"dev": "node server.js -p $PORT",
"build": "next build",
"heroku-postbuild": "next build",
"start": "node server.js -p $PORT",
"test": "`npm bin`/ava **/*-test.js"
},
"dependencies": {
"classnames": "^2.2.6",
"dotenv": "^6.2.0",
"episode-7": "^1.1.2",
"express": "^4.16.4",
"javascript-time-ago": "^2.0.1",
"jsforce": "^1.9.1",
"jsforce-connection": "^2.1.0",
"next": "^8.0.1",
"react": "^16.8.2",
"react-addons-css-transition-group": "^15.6.2",
"react-dom": "^16.8.2",
"redis": "^2.8.0"
},
"engines": {
"node": "10.x"
},
"devDependencies": {
"ava": "^1.2.0"
}
}