This repository was archived by the owner on Sep 8, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.37 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 2.37 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
70
71
72
73
74
75
76
{
"name": "@thedbklab/dbktvcms",
"description": "CMS for DiamondbackTV. DBKTV is a digital signage project with the goal of streaming specially curated Diamondback content - feature stories, multimedia, article previews, and advertisements - to various televisions on campus.",
"version": "1.0.0",
"author": "Lexus Drumgold <lex@flexdevelopment.llc>",
"scripts": {
"preinstall": "rm -rf node_modules",
"start:admin": "serve -s ./public/admin",
"start:public": "serve -s ./public",
"prestart:functions": "NODE_ENV=development cp .env.development .env",
"start:functions": "netlify-lambda serve src/functions",
"start": "run-p start:**",
"lint": "eslint ./src/**/*.js --fix",
"prebuild:functions": "npm run lint",
"build:functions": "netlify-lambda build src/functions",
"build": "run-p build:**",
"predeploy": "NODE_ENV=production",
"deploy": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/The-Diamondback-Lab/dbktvcms.git"
},
"keywords": [
"the diamondback",
"digital signage",
"netlify cms"
],
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/The-Diamondback-Lab/dbktvcms/issues"
},
"dependencies": {
"@feathersjs/errors": "^3.3.6",
"axios": "^0.19.0",
"dotenv": "^8.1.0",
"pusher": "^3.0.0"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-proposal-export-default-from": "^7.5.2",
"@babel/plugin-proposal-export-namespace-from": "^7.2.0",
"@babel/plugin-proposal-throw-expressions": "^7.2.0",
"@babel/preset-env": "^7.5.5",
"babel-eslint": "^11.0.0-beta.0",
"babel-jest": "^24.9.0",
"eslint": "^6.2.1",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.17.1",
"eslint-plugin-jest": "^22.5.1",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-standard": "^4.0.0",
"identity-obj-proxy": "^3.0.0",
"netlify-cli": "^2.15.0",
"netlify-lambda": "^1.6.3",
"npm-run-all": "^4.1.5",
"serve": "^11.2.0"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"engines": {
"node": "10"
}
}