-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 2.36 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
{
"name": "wyrms",
"version": "0.0.1",
"main": "index.js",
"license": "MIT",
"private": true,
"scripts": {
"start": "webpack-dev-server --config webpack.dev.js",
"build": "webpack --config webpack.prod.js",
"test": "npm-run-all check-code lint-code lint-configs",
"check-code": "tsc --noEmit --project .",
"lint-code": "eslint 'src/**/*.{ts,tsx}'",
"lint-styles": "stylelint 'src/**/*.scss'",
"lint-configs": "eslint '*.js' 'src/**/*.js'",
"lint-all": "npm-run-all --parallel lint-code lint-styles lint-configs",
"fix-code": "eslint --fix 'src/**/*.{ts,tsx}'",
"fix-styles": "stylelint --fix 'src/**/*.scss'",
"fix-configs": "eslint --fix '*.js' 'src/**/*.js'",
"fix-docs": "prettier --write '*.md'",
"fix-all": "npm-run-all --parallel fix-code fix-styles fix-configs fix-docs"
},
"dependencies": {
"bootstrap": "^5.2.3",
"chroma-js": "^2.4.2",
"tone": "^14.7.77"
},
"devDependencies": {
"@types/chroma-js": "^2.4.0",
"@typescript-eslint/eslint-plugin": "^5.48.2",
"@typescript-eslint/parser": "^5.48.2",
"clean-webpack-plugin": "^4.0.0",
"css-loader": "^6.7.3",
"css-minimizer-webpack-plugin": "^4.2.2",
"eslint": "^8.32.0",
"eslint-config-prettier": "^8.6.0",
"eslint-config-stylelint": "^17.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-simple-import-sort": "^9.0.0",
"favicons": "^7.0.2",
"favicons-webpack-plugin": "^6.0.0",
"html-webpack-plugin": "^5.5.0",
"mini-css-extract-plugin": "^2.7.2",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.21",
"postcss-loader": "^7.0.2",
"postcss-scss": "^4.0.6",
"pre-commit": "^1.2.2",
"prettier": "^2.8.3",
"sass": "^1.57.1",
"sass-loader": "^13.2.0",
"stylelint": "^14.16.1",
"stylelint-prettier": "^2.0.0",
"stylelint-scss": "^4.3.0",
"terser-webpack-plugin": "^5.3.6",
"ts-loader": "^9.4.2",
"typed-emitter": "^2.1.0",
"typescript": "^4.9.4",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.11.1",
"webpack-merge": "^5.8.0"
},
"pre-commit": [
"fix-all",
"check-code"
]
}