forked from AlchemyCMS/alchemy_cms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 934 Bytes
/
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
{
"name": "alchemy_admin",
"scripts": {
"test": "jest",
"lint": "prettier --check 'app/javascript/**/*.js'"
},
"keywords": [],
"author": "Thomas von Deyen",
"license": "BSD-3-Clause",
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.22.11",
"@babel/preset-env": "^7.22.11",
"babel-jest": "^29.6.4",
"flatpickr": "^4.6.9",
"jest": "^29.6.4",
"jest-environment-jsdom": "^29.6.4",
"jquery": "^2.2.4",
"jsdom-testing-mocks": "^1.11.0",
"lodash-es": "^4.17.21",
"prettier": "^3.0.0",
"sortablejs": "^1.10.2",
"xhr-mock": "^2.5.1"
},
"jest": {
"globals": {
"Alchemy": {}
},
"moduleNameMapper": {
"alchemy_admin/(.*)": "<rootDir>/app/javascript/alchemy_admin/$1",
"vendor/(.*)": "<rootDir>/vendor/assets/javascripts/$1"
},
"testEnvironment": "jsdom",
"roots": [
"spec/javascript/alchemy_admin"
]
}
}