-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
114 lines (114 loc) · 3.56 KB
/
package.json
File metadata and controls
114 lines (114 loc) · 3.56 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
104
105
106
107
108
109
110
111
112
113
114
{
"name": "pandapush",
"version": "2.2.0",
"description": "multi-tenant pub/sub system for web (built on faye)",
"author": "Zach Wily <zach@instructure.com>",
"readmeFilename": "README.md",
"license": "2014 Copyright Instructure",
"main": "server/index.js",
"scripts": {
"eslint": "eslint .",
"test": "jest",
"test:unit": "jest --testPathIgnorePatterns=__integration__",
"test:integration": "jest --testMatch='**/__integration__/**/*.spec.js' --testPathIgnorePatterns='/node_modules/' --runInBand",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:all": "npm run test:unit && npm run test:integration"
},
"dependencies": {
"@okta/oidc-middleware": "^4.0.0",
"async": "^2.1.4",
"aws-sdk": "^2.305.0",
"basic-auth-connect": "^1.0.0",
"body-parser": "^1.5.0",
"bunyan": "^1.8.5",
"connect-requestid": "^1.1.0",
"cookie-parser": "^1.3.2",
"cookie-session": "^1.3.2",
"dotenv": "^6.0.0",
"express": "^4.6.1",
"faye": "^1.2.4",
"faye-presence": "0.0.3",
"faye-redis-sharded": "https://github.com/instructure/faye-redis-sharded-node#4ed567a8a827c1c314d3692f41e2accb74908eb0",
"jsonwebtoken": "^8.5.1",
"knex": "^2.4.0",
"lodash": "4.17.21",
"lynx": "^0.2.0",
"memory-cache": "^0.2.0",
"moment": "^2.7.0",
"pg": "^8.7.3",
"redis": "^2.6.5",
"redis-evalsha": "1.1.1",
"redlock": "4.1.0",
"shard-manager": "^1.0.0",
"sqlite3": "npm:@vscode/sqlite3@^5.1.12-vscode"
},
"devDependencies": {
"@playwright/test": "1.48.2",
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@instructure/ui-alerts": "^5.30.0",
"@instructure/ui-breadcrumb": "^5.30.0",
"@instructure/ui-buttons": "^5.30.0",
"@instructure/ui-code-editor": "^5.30.0",
"@instructure/ui-elements": "^5.30.0",
"@instructure/ui-forms": "^5.30.0",
"@instructure/ui-icons": "^5.30.0",
"@instructure/ui-layout": "^5.30.0",
"@instructure/ui-menu": "^5.30.0",
"@instructure/ui-overlays": "^5.30.0",
"@instructure/ui-tabs": "^5.30.0",
"@instructure/ui-themes": "^5.30.0",
"@reach/router": "^1.1.1",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^9.0.0",
"babel-jest": "^23.4.2",
"babel-loader": "^8.0.0",
"chomp": "0.0.1",
"cli-color": "^1.3.0",
"commander": "^2.17.1",
"envify": "^4.0.0",
"eslint": "^5.16.0",
"eslint-config-react-app": "^3.0.4",
"eslint-plugin-flowtype": "^2.50.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-prettier": "^2.6.2",
"eslint-plugin-react": "^7.11.1",
"istanbul": "^0.4.5",
"jest": "^23.5.0",
"nodemon": "~1.18.4",
"prettier": "1.14.2",
"prop-types": "^15.6.2",
"query-string": "^6.1.0",
"react": "^16.4.2",
"react-dom": "^16.4.2",
"react-router": "^4.3.1",
"react-router-dom": "^4.3.1",
"react-tag-autocomplete": "^5.6.0",
"snazzy": "^8.0.0",
"supertest": "^6.3.3",
"webpack": "^4.17.1",
"webpack-cli": "^3.1.0",
"whatwg-fetch": "^2.0.2",
"yargs": "^12.0.1"
},
"overrides": {
"lodash": "4.17.21",
"qs": "^6.14.1"
},
"jest": {
"collectCoverageFrom": [
"server/**/*.js",
"!server/**/__tests__/**",
"!server/**/__integration__/**"
],
"testPathIgnorePatterns": [
"/node_modules/",
"/__integration__/"
],
"setupTestFrameworkScriptFile": "<rootDir>/server/__integration__/jest.setup.js"
}
}