forked from CircuitVerse/CircuitVerse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.13 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
{
"name": "CircuitVerse",
"version": "1.0.0",
"repository": "[email protected]:CircuitVerse/CircuitVerse.git",
"license": "MIT",
"scripts": {
"test": "jest",
"build:docs": "jsdoc simulator/src/* -c conf.json -t ./node_modules/better-docs",
"watch:doc-src": "npx nodemon --exec 'npm run build:docs' --watch simulator/src/",
"watch:doc-output": "npx livereload out",
"watch:docs": "npm run watch:doc-output & npm run watch:doc-src",
"lint": "eslint ./simulator",
"postinstall": "opencollective-postinstall || true",
"prepare": "husky install",
"build": "node esbuild.config.js"
},
"devDependencies": {
"@babel/preset-env": "^7.18.2",
"@commitlint/cli": "^17.0.2",
"@commitlint/config-conventional": "^17.4.4",
"canvas": "^2.9.1",
"chokidar": "^3.5.3",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"husky": ">=6",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.4.3",
"jsdoc": "3.6.10",
"lint-staged": ">=13",
"livereload": "^0.9.3",
"nodemon": "^2.0.16"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^6.3.0",
"@hotwired/stimulus": "^3.0.1",
"@tarekraafat/autocomplete.js": "^10.2.6",
"banana-i18n": "^2.3.3",
"better-docs": "^2.7.2",
"bootstrap": "^4.6.1",
"bootstrap-input-spinner": "^3.1.14",
"canvas2svg": "1.0.16",
"codemirror": "^5.65.1",
"dom-to-image": "^2.6.0",
"dompurify": "^2.3.8",
"driver.js": "^0.9.8",
"esbuild": "^0.17.8",
"esbuild-plugin-sass": "^1.0.1",
"esbuild-rails": "^1.0.3",
"jquery": "^3.6.0",
"jquery-resizable-dom": "^0.35.0",
"jquery-ujs": "^1.2.3",
"jsdoc-export-default-interop": "^0.3.1",
"opencollective-postinstall": "^2.0.3",
"popper.js": "^1.16.1",
"sass": "^1.53.0",
"stimulus": "^3.2.1",
"trumbowyg": "^2.25.1",
"turbolinks": "^5.2.0"
},
"collective": {
"type": "opencollective",
"url": "https://opencollective.com/CircuitVerse"
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.rb": "rubocop -l -A"
}
}