-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 972 Bytes
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 972 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": "southern-exclamation",
"version": "0.0.1",
"description": "An expression generator for Slack",
"main": "index.js",
"scripts": {
"dev": "parcel ./src/index.html",
"build": "rm -rf static && parcel build ./src/index.html --out-dir static",
"start": "node index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ewendlick/southern-exclamation.git"
},
"engines": {
"node": "14.x"
},
"author": "Southern Exclamation Cowboys",
"license": "ISC",
"bugs": {
"url": "https://github.com/ewendlick/southern-exclamation/issues"
},
"homepage": "https://github.com/ewendlick/southern-exclamation#readme",
"devDependencies": {
"parcel-bundler": "^1.12.4",
"prettier": "^2.2.1"
},
"dependencies": {
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"node-fetch": "^2.6.1"
},
"browserslist": [
"last 1 Chrome version"
]
}