-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
131 lines (131 loc) · 4.17 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
{
"name": "lti_starter_app",
"version": "1.0.0",
"description": "LTI Starter app using Ruby on Rails and React",
"author": "atomicjolt",
"license": "MIT",
"homepage": "https://github.com/atomicjolt/lti_starter_app",
"scripts": {
"test": "jest --config package.json",
"test_update": "jest -u --config package.json",
"test_debug": "node inspect jest --runInBand --config package.json || SUCCESS=false",
"lint": "eslint client",
"lint_fix": "eslint client --fix",
"nuke": "rm -rf node_modules",
"inspect_fuel": "\"${EDITOR:-vi}\" ./node_modules/atomic-fuel",
"build": "yarn run build_packs",
"hot": "node esbuild.js dev client/packs/*.*",
"build_packs": "node esbuild.js prod client/packs/*.*"
},
"repository": {
"type": "git",
"url": "https://github.com/atomicjolt/lti_starter_app"
},
"keywords": [
"React",
"Rails",
"Atomic Jolt",
"LMS",
"LTI",
"OAuth"
],
"jest": {
"roots": [
"<rootDir>/client"
],
"verbose": true,
"moduleDirectories": [
"node_modules",
"<rootDir>/client"
],
"transform": {
"\\.(gql|graphql)$": "jest-transform-graphql",
"^.+\\.jsx?$": "babel-jest"
},
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/client/testing/__mocks__/file_mock.js",
"\\.(sass|scss|css|less)$": "<rootDir>/client/testing/__mocks__/style_mock.js"
},
"setupFilesAfterEnv": [
"<rootDir>/client/testing/shim.js",
"<rootDir>/client/testing/setup_env.js"
],
"testEnvironment": "jsdom"
},
"dependencies": {
"@apollo/client": "^3.6.4",
"@atomicjolt/lti-client": "^2.4.3",
"@atomicjolt/lti-components": "^1.0.1",
"@babel/core": "^7.17.12",
"@babel/plugin-proposal-class-properties": "^7.17.12",
"@babel/plugin-proposal-object-rest-spread": "^7.17.12",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-destructuring": "^7.17.12",
"@babel/plugin-transform-regenerator": "^7.17.9",
"@babel/plugin-transform-runtime": "^7.17.12",
"@babel/preset-env": "^7.17.12",
"@babel/preset-react": "^7.17.12",
"@testing-library/react": "^12.0.4",
"atomic-canvas": "^1.13.4",
"atomic-fuel": "4.19.0",
"babel-loader": "^8.2.5",
"babel-plugin-dynamic-import-node": "^2.3.3",
"babel-plugin-macros": "^3.1.0",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"chart.js": "^3.7.1",
"core-js": "^3.22.5",
"css-loader": "^2.1.1",
"es6-promise": "^4.2.4",
"esbuild": "^0.14.49",
"esbuild-sass-plugin": "^2.3.0",
"file-loader": "^4.3.0",
"graphql": "^16.5.0",
"graphql-tag": "^2.12.6",
"history": "^4.10.1",
"i18next": "^23.5.1",
"i18next-browser-languagedetector": "^7.1.0",
"lodash": "4.17.21",
"moment": "^2.29.4",
"moment-timezone": "^0.5.35",
"prop-types": "^15.8.1",
"react": "^17.0.2",
"react-chartjs-2": "^4.1.0",
"react-dom": "^17.0.2",
"react-flatpickr": "^3.10.12",
"react-modal": "^3.15.1",
"react-paginate": "^8.1.3",
"react-redux": "^8.0.1",
"react-router": "^5.2.1",
"react-router-dom": "^5.3.0",
"react-router3": "npm:[email protected]",
"react-select": "^5.3.2",
"react-select-event": "^5.5.0",
"redux": "4.2.0",
"regenerator-runtime": "^0.13.9",
"resize-observer-polyfill": "^1.5.1",
"sass-loader": "^8.0.2",
"style-loader": "^1.3.0",
"superagent": "^7.1.3"
},
"devDependencies": {
"@babel/eslint-parser": "^7.17.0",
"babel-jest": "^28.1.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.6",
"enzyme-to-json": "^3.6.2",
"eslint": "^8.15.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.5.0",
"eventsource-polyfill": "^0.9.6",
"jest": "^28.1.0",
"jest-environment-jsdom": "^28.1.0",
"jest-transform-graphql": "^2.1.0",
"react-test-renderer": "^17.0.2",
"redux-mock-store": "^1.5.4",
"wait-for-expect": "^3.0.2"
}
}