-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 857 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 857 Bytes
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
{
"name": "atomic_lti",
"version": "1.0.1",
"main": "index.js",
"repository": "git@github.com:atomicjolt/atomic_lti.git",
"author": "Matt Petro <matt.petro@atomicjolt.com>",
"license": "MIT",
"scripts": {
"test": "jest --config package.json",
"build": "yarn run build_packs",
"build_packs": "node esbuild.mjs"
},
"jest": {
"roots": [
"<rootDir>/app"
],
"transform": {
"^.+\\.jsx?$": "babel-jest"
},
"testEnvironment": "jsdom"
},
"devDependencies": {
"@babel/preset-env": "^7.21.4",
"babel-jest": "^29.5.0",
"esbuild": "^0.17.18",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0"
},
"dependencies": {
"@atomicjolt/lti-client": "^2.6.0",
"@atomicjolt/lti-types": "^1.1.7",
"i18next": "^22.4.15",
"i18next-browser-languagedetector": "^7.0.1"
}
}