-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
45 lines (45 loc) · 1.03 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
{
"engines": {
"node": "16.x"
},
"dependencies": {
"@rails/webpacker": "^5.4.3",
"acorn": "^8.5.0",
"cytoscape": "^3.20.0",
"cytoscape-dagre": "^2.3.2",
"cytoscape-popper": "^2.0.0",
"minimist": "^1.2.6",
"rails-ujs": "^5.2.6",
"serialize-javascript": "^6.0.0",
"string-to-color": "^2.2.2",
"tippy.js": "^4.3.5"
},
"devDependencies": {
"bootstrap.native": "^4.0.7",
"eslint": "^8.2.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jest": "^25.2.4",
"jest": "^27.3.1",
"jest-canvas-mock": "^2.3.1",
"jest-environment-jsdom": "^27.3.1",
"webpack-dev-server": "^4.5.0"
},
"scripts": {
"test": "jest",
"lint": "yarn run eslint app/javascript spec/javascript"
},
"jest": {
"roots": [
"spec/javascript"
],
"setupFiles": [
"jest-canvas-mock"
],
"moduleDirectories": [
"node_modules",
"app/javascript"
],
"testEnvironment": "jest-environment-jsdom"
}
}