-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.84 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.84 KB
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "pie-lib",
"license": "MIT",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/pie-framework/pie-lib"
},
"scripts": {
"static": "./scripts/static",
"test": "./scripts/test",
"dev": "./scripts/dev",
"lint": "scripts/build lint",
"clean": "scripts/build clean",
"release": "scripts/build release deploy",
"release:next": "scripts/build release deploy --next",
"build": "scripts/build build",
"run-mathml": "cd node_modules/ && yarn link \"@pie-framework/mathml-to-latex\" && cd .. && ./scripts/dev",
"clean-install": "git clean -xdf . && yarn install && ./scripts/build babel",
"link-pslb": "cd node_modules/ && yarn link '@pslb/pslb'",
"print-module": "time yarn pslb --config pslb/pslb.config.js --logLevel silly",
"clean-print-module": "yarn clean-install && yarn print-module"
},
"dependencies": {
"@babel/runtime": "^7.28.6"
},
"devDependencies": {
"@babel/cli": "^7.28.6",
"@babel/core": "^7.29.0",
"@babel/eslint-parser": "^7.28.6",
"@babel/plugin-proposal-export-default-from": "^7.27.1",
"@babel/plugin-syntax-optional-catch-binding": "^7.8.3",
"@babel/plugin-transform-class-properties": "^7.28.6",
"@babel/plugin-transform-export-namespace-from": "^7.27.1",
"@babel/plugin-transform-runtime": "^7.29.0",
"@babel/preset-env": "^7.29.0",
"@babel/preset-react": "^7.28.5",
"@pie-framework/build-helper": "^5.2.11",
"@pie-lib/test-utils": "^0.22.1",
"@pslb/pslb": "4.4.2-beta.0",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^16.3.2",
"@testing-library/react-hooks": "^8.0.1",
"@testing-library/user-event": "^14.6.1",
"@types/fs-extra": "^11.0.4",
"@types/jest": "^29.5.14",
"@types/react": "^18.3.28",
"@types/react-dom": "^18.3.7",
"babel-core": "7.0.0-bridge.0",
"babel-jest": "^29.7.0",
"babel-loader": "^8.4.1",
"chalk": "4.1.2",
"chokidar": "^5.0.0",
"css-loader": "^2.1.1",
"eslint": "^8.57.1",
"eslint-plugin-react": "^7.37.5",
"fast-glob": "^3.3.3",
"file-loader": "^3.0.1",
"fs-extra": "^11.3.3",
"husky": "^9.1.7",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jsdom": "26.1.0",
"lerna": "^9.0.4",
"lint-staged": "^15.5.2",
"lodash-es": "^4.17.23",
"minimist": "^1.2.8",
"next": "^15.5.12",
"next-transpile-modules": "^10.0.1",
"now": "^13.1.3",
"prettier": "^3.8.1",
"pretty-quick": "^4.2.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"regenerator-runtime": "^0.14.1",
"semver": "^7.7.4",
"url-loader": "^1.1.2",
"yarn": "^1.22.22"
},
"config": {
"scope": "none"
},
"engines": {
"node": ">=18.0.0"
},
"workspaces": [
"packages/*"
]
}