-
Notifications
You must be signed in to change notification settings - Fork 65
/
Copy pathpackage.json
71 lines (71 loc) · 2.52 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
{
"name": "manyfold",
"private": true,
"scripts": {
"lint:ts": "ts-standard --fix",
"build": "bundle exec i18n export --config=./config/i18n-js.yml && esbuild app/javascript/*.* --minify=true --tree-shaking=true --bundle --sourcemap --outdir=app/assets/builds --public-path=assets",
"build:css": "yarn build:css:compile && yarn build:css:prefix",
"build:css:compile": "sass ./app/assets/stylesheets/entrypoints:./app/assets/builds --no-source-map --load-path=node_modules --quiet-deps --silence-deprecation import",
"build:css:prefix": "postcss ./app/assets/builds/*.css --use=autoprefixer -d ./app/assets/builds/",
"watch:css": "nodemon --watch ./app/assets/stylesheets/ --ext scss --exec \"yarn build:css\"",
"typecheck": "bundle exec i18n export --config=./config/i18n-js.yml && tsc --project tsconfig.json"
},
"dependencies": {
"@activeadmin/activeadmin": "^3.3.0",
"@infinizhen/rpg-awesome-continued": "^1.0.6",
"@notus.sh/cocooned": "^2.4.1",
"@popperjs/core": "^2.11.8",
"@rails/ujs": "^7.1.501",
"@selectize/selectize": "^0.15.2",
"@uppy/core": "^4.4.2",
"@uppy/dashboard": "^4.3.2",
"@uppy/form": "^4.1.1",
"@uppy/locales": "^4.5.1",
"@uppy/tus": "^4.2.2",
"@zxcvbn-ts/core": "^3.0.4",
"@zxcvbn-ts/language-common": "^3.0.4",
"@zxcvbn-ts/language-en": "^3.0.2",
"autoprefixer": "^10.4.21",
"bootstrap": "^5.3.3",
"bootstrap-icons": "^1.11.3",
"bootswatch": "^5.3.3",
"comlink": "^4.4.2",
"esbuild": "^0.25.1",
"i18n-js": "^4.5.1",
"jquery": "^3.7.1",
"masonry-layout": "^4.2.2",
"nodemon": "^3.1.9",
"postcss": "^8.5.3",
"postcss-cli": "^11.0.0",
"sass-embedded": "^1.85.1",
"three": "^0.174.0",
"threejs-webworker-3mf-loader": "https://github.com/manyfold3d/threejs-webworker-3mf-loader"
},
"version": "0.1.0",
"devDependencies": {
"@babel/core": "^7",
"@babel/eslint-parser": "^7.26.10",
"@babel/preset-typescript": "^7.26.0",
"@types/bootstrap": "^5.2.10",
"@types/i18n-js": "^4.0.1",
"@types/jquery": "^3.5.32",
"@types/lodash": "^4.17.16",
"@types/node": "^20.17.24",
"@types/selectize": "^0.12.39",
"@types/three": "^0.174.0",
"@types/webpack-env": "^1.18.8",
"@types/webxr": "^0.5.21",
"@typescript-eslint/parser": "^8.26.1",
"eslint": "^9.22.0",
"husky": "^9.1.7",
"ts-standard": "^12.0.2",
"typescript": "^5.8.2"
},
"packageManager": "[email protected]",
"browserslist": [
"defaults"
],
"volta": {
"node": "22.13.0"
}
}