-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
62 lines (62 loc) · 2.02 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
{
"name": "econplayground",
"version": "0.1.0",
"description": "econplayground",
"author": "Nik Nyby",
"license": "GPL-3.0+",
"type": "module",
"bugs": {
"url": "https://github.com/ccnmtl/econplayground/issues"
},
"homepage": "https://github.com/ccnmtl/econplayground#readme",
"dependencies": {
"commonmark": "0.31.2",
"decimal.js": "nikolas/decimal.js#export-fix",
"jsxgraph": "~1.10.0",
"katex": "^0.16.11",
"mathjs": "^14.0.0",
"object-assign": "~4.1.1",
"promise": "~8.3.0",
"react": "~18.3.0",
"react-dom": "~18.3.1",
"webpack": "~5.97.0",
"webpack-cli": "~6.0.0"
},
"scripts": {
"test": "NODE_OPTIONS=--experimental-vm-modules jest",
"build-scss": "sass --style compressed ./media/scss/main.scss ./media/css/main.css",
"watch-scss": "sass --watch --update --verbose ./media/scss/main.scss ./media/css/main.css",
"dev": "webpack --mode development --watch --config media/js/config/webpack.config.dev.cjs",
"build": "NODE_ENV=production webpack --mode production --config media/js/config/webpack.config.prod.cjs",
"eslint": "eslint media/js/src/*.js media/js/src/**/*.js media/js/src/*.jsx media/js/src/**/*.jsx media/js/config/*.cjs media/js/static/*.js"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/eslint-parser": "^7.24.1",
"@babel/preset-env": "^7.9.6",
"@babel/preset-react": "^7.9.4",
"autoprefixer": "~10.4.0",
"babel-jest": "~29.7.0",
"babel-loader": "~9.2.1",
"bfj": "^9.0.1",
"canvas": "~2.11.0",
"eslint": "~8.57.0",
"eslint-plugin-react": "~7.37.0",
"eslint-plugin-security": "~3.0.0",
"file-loader": "~6.2.0",
"fs-extra": "~11.3.0",
"jest": "~29.7.0",
"jest-environment-jsdom": "29.7.0",
"jsdom": "~25.0.0",
"lodash": "^4.17.20",
"postcss-cli": "~11.0.0",
"react-dev-utils": "~12.0.0",
"react-test-renderer": "~18.3.1",
"sass": "^1.77.8",
"style-loader": "~4.0.0",
"url-loader": "~4.1.0"
},
"eslintConfig": {
"extends": "react-app"
}
}