-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.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
{
"name": "MathCanvas",
"version": "1.0.0",
"description": "Derivative and integral functions animations with Canvas",
"main": "index.js",
"repository": "[email protected]:ccatterina/MathCanvas.git",
"author": "Claudio Catterina <[email protected]>",
"license": "GPL-3.0",
"dependencies": {
"bootstrap": "^5.2.1",
"@popperjs/core": "^2.11.6",
"mathjs": "^11.2.1"
},
"devDependencies": {
"@types/bootstrap": "^5.2.6",
"@typescript-eslint/eslint-plugin": "^5.59.5",
"@typescript-eslint/parser": "^5.59.5",
"autoprefixer": "^10.4.12",
"concurrently": "^7.4.0",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.7.1",
"cssnano": "^5.1.13",
"eslint": "^8.40.0",
"eslint-plugin-compat": "^4.1.4",
"eslint-plugin-html": "^7.1.0",
"file-loader": "^6.2.0",
"mini-css-extract-plugin": "^2.6.1",
"postcss": "^8.4.16",
"postcss-import": "^15.0.0",
"postcss-loader": "^7.0.1",
"postcss-preset-env": "^7.8.2",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"sass": "^1.55.0",
"sass-loader": "^13.0.2",
"stylelint": "^15.6.1",
"stylelint-config-standard-scss": "^9.0.0",
"stylelint-no-unsupported-browser-features": "^6.1.0",
"ts-loader": "^9.3.1",
"typescript": "^4.8.3",
"webpack": "^5.74.0",
"webpack-cli": "5",
"webpack-dev-server": "^4.11.1",
"webpack-merge": "^5.8.0"
},
"scripts": {
"lint:eslint": "eslint src/ --ext .js,.ts",
"lint:stylelint": "stylelint src/**/*.{css,scss}",
"lint": "npm run lint:eslint && npm run lint:stylelint",
"dev": "rimraf ./_site && concurrently \"webpack-dev-server --config webpack.dev.js \" \"bundle exec jekyll serve --config _config.yml,_config.dev.yml\""
},
"browserslist": [
"defaults"
]
}