-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 845 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 845 Bytes
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
{
"name": "@axosoft/glo-board-markdown",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"dev": "nodemon --inspect server.js",
"build": "next build",
"start": "NODE_ENV=production node server.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@axosoft/glo-sdk": "^1.0.7",
"body-parser": "^1.18.3",
"cookie-parser": "^1.4.3",
"express": "^4.16.4",
"express-session": "^1.15.6",
"next": "^9.2.1",
"passport": "^0.4.0",
"passport-oauth2": "^1.4.0",
"react": "^16.8.0-alpha.1",
"react-dom": "^16.8.0-alpha.1",
"react-markdown": "^4.0.6"
},
"devDependencies": {
"dotenv": "^6.2.0",
"nodemon": "^1.18.9"
},
"nodemonConfig": {
"ignore": [
"pages/*",
"node_modules/*",
".next/*"
]
}
}