-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
150 lines (150 loc) · 4.95 KB
/
package.json
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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
{
"name": "gtfo",
"version": "1.2.0",
"description": "Gently Tell Folks Out of meeting rooms - remote unit control",
"repository": {
"type": "git",
"url": "git@github.com:Nase00/gtfo.git"
},
"main": "application.js",
"node_test_paths": "./tests/server/**/*.spec.* ./tests/universal/**/*.spec.*",
"scripts": {
"flash": "node firmware/flash",
"clean": "rimraf server/public/dist && rimraf coverage",
"demo": "node environment/demo",
"deploy-server": "NODE_ENV=production forever start ./application.js",
"dev-server": "nodemon --watch server --watch environment --watch universal -e js,jsx ./application.js",
"hot": "npm run clean && DEV=true HOT=true npm run dev-server --",
"dev": "npm run clean && DEV=true npm run dev-server --",
"lint": "eslint --ext .js,.jsx *.js client server universal environment tests webpack",
"prod": "npm run clean && npm run prod-client && npm run prod-server --",
"prod-client": "NODE_ENV=production webpack --config webpack/webpack.prod.config.js --dhc",
"prod-server": "NODE_ENV=production npm run server",
"server": "node ./application.js",
"start": "npm run prod",
"test": "npm run clean && npm run lint && jest && snyk test",
"test-cov": "jest --coverage && npm run upload-cov",
"upload-cov": "cat ./coverage/lcov.info | coveralls",
"yolo": "rimraf environment/mock-data.json",
"snyk-protect": "snyk protect",
"prepublish": "yarn run snyk-protect"
},
"author": "Sean Owiecki",
"contributors": [
{
"name": "Sean Owiecki",
"email": "seanowiecki@gmail.com"
}
],
"license": "MIT",
"engines": {
"node": "^16.11.0",
"npm": "^8.0.0"
},
"private": true,
"dependencies": {
"@babel/core": "^7.1.2",
"@babel/eslint-parser": "^7.12.1",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-transform-modules-commonjs": "^7.1.0",
"@babel/plugin-transform-runtime": "^7.7.6",
"@babel/preset-env": "^7.1.0",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.0.0",
"@babel/runtime": "^7.1.2",
"@material-ui/core": "^3.5.1",
"@material-ui/icons": "^3.0.1",
"@material-ui/lab": "^3.0.0-alpha.23",
"@wojtekmaj/enzyme-adapter-react-17": "^0.1.1",
"babel-core": "^7.0.0-bridge.0",
"babel-loader": "^8.0.6",
"babel-plugin-module-resolver": "^3.1.1",
"babel-plugin-react-transform": "3.0.0",
"babel-plugin-transform-react-constant-elements": "^6.23.0",
"babel-plugin-transform-react-remove-prop-types": "^0.4.19",
"blessed": "^0.1.81",
"blessed-contrib": "^4.8.13",
"body-parser": "^1.19.0",
"color": "^3.1.0",
"colors": "^1.4.0",
"connected-react-router": "^5.0.1",
"cookie-parser": "^1.4.0",
"emotion": "^9.2.12",
"express": "^4.15.2",
"file-loader": "^2.0.0",
"history": "^4.10.1",
"immutable": "^3.7.6",
"js-cookie": "^2.2.0",
"json-loader": "^0.5.4",
"jsonschema": "^1.3.0",
"lodash": "4.17.20",
"marked-terminal": "^3.1.1",
"moment": "^2.29.1",
"particle-api-js": "^8.0.1",
"prop-types": "^15.7.2",
"query-string": "^6.8.3",
"react": "^17.0.0",
"react-addons-css-transition-group": "^15.6.2",
"react-dom": "^17.0.0",
"react-draggable": "^3.0.5",
"react-motion": "0.5.2",
"react-oauth-flow": "^1.2.0",
"react-redux": "^5.1.0",
"react-router": "^4.3.1",
"react-router-dom": "4.2.2",
"react-swipeable-views": "^0.13.0",
"recompose": "^0.30.0",
"redux": "^4.0.0",
"rimraf": "^2.5.2",
"scroll": "^2.0.3",
"scroll-into-view": "^1.9.3",
"serve-favicon": "^2.3.0",
"slugify": "^1.3.5",
"snyk": "^1.413.2",
"split": "^1.0.1",
"velocity-animate": "^1.5.2",
"velocity-react": "1.4.1",
"webpack": "^4.28.1",
"webpack-cli": "3.3.5",
"webpack-messages": "^2.0.4",
"withstyles": "^1.0.3",
"ws": "^7.3.1",
"yargs": "^12.0.2"
},
"devDependencies": {
"app-module-path": "^2.2.0",
"babel-jest": "^23.6.0",
"chromedriver": "^2.28.0",
"coveralls": "^3.0.2",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.5",
"eslint": "^7.11.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-formatter-pretty": "^1.0.0",
"eslint-plugin-filenames": "^1.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.21.5",
"expect": "^25.1.0",
"isparta": "^4.0.0",
"jest": "^23.6.0",
"mock-socket": "^8.0.5",
"nodemon": "^2.0.4",
"nyc": "^14.1.1",
"react-addons-test-utils": "^15.0.0",
"react-hot-loader": "^4.3.11",
"regenerator-runtime": "^0.12.1",
"sinon": "^7.1.1",
"webpack-dev-middleware": "^3.4.0",
"webpack-hot-middleware": "^2.25.0"
},
"jest": {
"setupTestFrameworkScriptFile": "./tests/jest.config.js",
"coverageReporters": [
"lcov"
]
},
"snyk": true
}