This repository was archived by the owner on Dec 17, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 3.09 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 3.09 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
{
"name": "@flexdevelopment/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": "2.0.0",
"author": "Flex Development, LLC <support@flexdevelopment.llc>",
"scripts": {
"clean": "rm -rf .env",
"preinstall": "rm -rf node_modules && npm run prebuild",
"lint": "eslint ./src/api/*.js ./src/components/*.jsx ./src/components/**/*.jsx --fix",
"predev": "NODE_ENV=development cp .env.development .env",
"dev": "react-scripts start",
"postdev": "npm run clean",
"test": "NODE_ENV=test jest --detectOpenHandles --passWithNoTests",
"prebuild": "rm -rf build/",
"build": "npm run lint && react-scripts build",
"prestart": "NODE_ENV=production cp .env.production .env && npm run build",
"start": "serve -s build",
"poststart": "npm run clean"
},
"repository": {
"type": "git",
"url": "git+https://github.com/flex-development/dbktv.git"
},
"keywords": [
"the diamondback",
"digital signage",
"iadea player",
"react",
"sass",
"web application"
],
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/flex-development/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",
"firebase": "^6.4.1",
"jquery": "^3.4.1",
"react": "^16.9.0",
"react-dfp": "^0.13.0",
"react-dom": "^16.9.0",
"react-ga": "^2.6.0",
"react-router-dom": "^5.0.1",
"react-scripts": "3.1.1",
"showdown": "^1.9.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/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",
"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",
"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"
}
}