forked from flex-development/dbktv
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 3.33 KB
/
Copy pathpackage.json
File metadata and controls
103 lines (103 loc) · 3.33 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "@thedbklab/dbktv",
"description": "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": "The Diamondback Lab",
"scripts": {
"preinstall": "rm -rf node_modules && rm -rf build/ && rm -rf lambda/",
"prestart:app": "NODE_ENV=development cp .env.development .env",
"start:app": "react-scripts start",
"prestart:lambda": "npm run prestart:app",
"start:lambda": "netlify-lambda serve src/lambda",
"start": "run-p start:**",
"lint": "eslint ./src/*.js ./src/**/*.js ./src/components/*.jsx ./src/components/**/*.jsx --fix",
"prebuild:app": "NODE_ENV=production cp .env.production .env && npm run lint && rm -rf build/",
"build:app": "react-scripts build",
"prebuild:lambda": "npm run prebuild:app",
"build:lambda": "netlify-lambda build src/lambda",
"build": "run-p build:**"
},
"repository": {
"type": "git",
"url": "git+https://github.com/The-Diamondback-Lab/dbktv.git"
},
"keywords": [
"the diamondback",
"digital signage",
"iadea player",
"react",
"sass",
"web application"
],
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/The-Diamondback-Lab/dbktv/issues"
},
"dependencies": {
"@feathersjs/errors": "^3.3.6",
"@fortawesome/fontawesome-svg-core": "^1.2.19",
"@fortawesome/free-solid-svg-icons": "^5.9.0",
"@fortawesome/react-fontawesome": "^0.1.4",
"axios": "^0.19.0",
"dotenv": "^8.1.0",
"http-proxy-middleware": "^0.20.0",
"jquery": "^3.4.1",
"netlify-lambda": "^1.6.3",
"npm-run-all": "^4.1.5",
"pusher": "^3.0.0",
"pusher-js": "^5.0.2",
"react": "^16.9.0",
"react-dfp": "^0.13.0",
"react-dom": "^16.10.2",
"react-ga": "^2.6.0",
"react-scripts": "3.1.1",
"showdown": "^1.9.0",
"urijs": "^1.19.1"
},
"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/preset-react": "^7.0.0",
"@feathersjs/feathers": "^4.3.4",
"babel-eslint": "^11.0.0-beta.0",
"babel-jest": "^24.9.0",
"concurrently": "^4.1.2",
"cross-env": "^5.2.1",
"eslint": "^6.2.1",
"eslint-config-standard": "^12.0.0",
"eslint-config-standard-jsx": "^7.0.0",
"eslint-config-standard-react": "^9.0.0",
"eslint-plugin-import": "^2.17.1",
"eslint-plugin-jest": "^22.5.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-react": "^7.14.2",
"eslint-plugin-standard": "^4.0.0",
"identity-obj-proxy": "^3.0.0",
"netlify-cli": "^2.15.0",
"node-sass": "^4.12.0",
"react-axe": "^3.2.0",
"run-script-os": "^1.0.7",
"serve": "^11.1.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"
}
}