-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.53 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
{
"name": "code-sorting",
"version": "1.0.4",
"description": "Code sorting algorithms!",
"repository": {
"type": "git"
},
"license": "MIT",
"author": "Yusuke Hayashi <[email protected]>",
"main": "dev-server.js",
"scripts": {
"build": "webpack --progress --color",
"dev": "webpack --watch --progress --color --mode='development' & yarn start",
"fix": "rm -rf node_modules package-lock.json && yarn update && npx sort-package-json && yarn install && yarn fmt && yarn lint",
"fmt": "prettier --write src",
"lint": "eslint --fix --ext .ts src",
"start": "nodemon dev-server.js",
"update": "npx npm-check-updates -u",
"prepare": "husky install"
},
"dependencies": {
"brace": "^0.11.1",
"d3-selection": "^3.0.0"
},
"devDependencies": {
"@types/d3": "^7.1.0",
"@typescript-eslint/eslint-plugin": "^5.12.0",
"@typescript-eslint/parser": "^5.12.0",
"css-loader": "^6.6.0",
"eslint": "^8.9.0",
"eslint-config-prettier": "^8.4.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-simple-import-sort": "^7.0.0",
"express": "^4.17.3",
"html-webpack-plugin": "^5.5.0",
"husky": "^7.0.4",
"lint-staged": "^12.3.4",
"mini-css-extract-plugin": "^2.5.3",
"nodemon": "^2.0.15",
"prettier": "^2.5.1",
"pug": "^3.0.2",
"pug-loader": "^2.4.0",
"serve-favicon": "^2.5.0",
"stylus": "^0.56.0",
"stylus-loader": "^6.2.0",
"ts-loader": "^9.2.6",
"typescript": "^4.5.5",
"webpack": "^5.69.1",
"webpack-cli": "^4.9.2"
}
}