forked from arithmico/arithmico
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
116 lines (116 loc) · 3.76 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "arithmico",
"version": "1.5.0",
"author": {
"name": "Lennard Behrens",
"email": "[email protected]",
"url": "https://behrenle.com"
},
"contributors": [
{
"name": "Tizian Roth"
},
{
"name": "Knut Büttner"
},
{
"name": "Ulrich Kalina"
}
],
"description": "",
"workspaces": [
"./apps/*",
"./libs/engine",
"./libs/parser"
],
"scripts": {
"start:config": "npm start -w apps/config",
"start:calc": "npm start -w apps/calc",
"start:docs": "npm start -w apps/docs",
"start:blog": "npm start -w apps/blog",
"build:all": "npm run build -w libs/engine -w apps/calc -w apps/docs -w apps/blog -w apps/config",
"build:parser": "npm run build -w libs/parser",
"build:engine": "npm run build -w libs/engine",
"rebuild:engine": "npm run build -w libs/parser && npm run build -w libs/engine",
"build:calc": "npm run build -w apps/calc",
"build:docs": "npm run build -w apps/docs",
"build:blog": "npm run build -w apps/blog",
"build:config": "npm run build -w apps/config",
"test:engine": "npm run test -w libs/engine",
"retest:engine": "npm run rebuild:engine && npm run test:engine",
"test:calc": "npm run test -w apps/calc",
"test:docs": "npm run test -w apps/docs",
"test:blog": "npm run test -w apps/blog",
"test:config": "npm run test -w apps/config",
"test:all": "npm run test -ws",
"lint:calc": "npm run lint -w apps/calc",
"lint:docs": "npm run lint -w apps/docs",
"lint:blog": "npm run lint -w apps/blog",
"lint:config": "npm run lint -w apps/config",
"lint:engine": "npm run lint -w libs/engine",
"lint:all": "npm run lint -ws"
},
"repository": {
"type": "git",
"url": "git+https://github.com/behrenle/arithmico.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/behrenle/arithmico/issues"
},
"homepage": "https://github.com/behrenle/arithmico#readme",
"devDependencies": {
"@arithmico/engine": "file:./libs/engine",
"@arithmico/parser": "file:./libs/parser",
"@babel/cli": "^7.19.3",
"@babel/core": "^7.20.5",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.18.6",
"@fontsource/roboto": "^4.5.8",
"@fontsource/source-code-pro": "^4.5.12",
"@headlessui/react": "1.5",
"@reduxjs/toolkit": "^1.9.1",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^14.4.3",
"@types/file-saver": "^2.0.5",
"@types/jest": "^28.1.8",
"@types/node": "^18.11.15",
"@types/overlayscrollbars": "^1.12.1",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.9",
"@types/redux-persist": "^4.3.1",
"@typescript-eslint/eslint-plugin": "^5.46.1",
"@typescript-eslint/parser": "^5.46.1",
"@vitejs/plugin-react": "^2.2.0",
"autoprefixer": "^10.4.13",
"better-react-mathjax": "^2.0.2",
"classnames": "^2.3.2",
"eslint": "^8.29.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-prettier": "^4.2.1",
"file-saver": "^2.0.5",
"i18next": "^21.10.0",
"jest": "^28.1.3",
"overlayscrollbars": "^1.13.3",
"overlayscrollbars-react": "^0.3.0",
"peggy": "^2.0.1",
"postcss": "^8.4.20",
"prettier": "^2.8.1",
"prettier-plugin-tailwindcss": "^0.2.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hotkeys-hook": "^3.4.7",
"react-i18next": "^11.18.6",
"react-markdown": "^8.0.4",
"react-redux": "^8.0.5",
"react-router-dom": "^6.4.5",
"redux-persist": "^6.0.0",
"tailwindcss": "^3.2.4",
"typescript": "^4.9.4",
"vite": "^3.2.5",
"vite-plugin-singlefile": "^0.12.3"
}
}