-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
74 lines (74 loc) · 2.15 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
{
"name": "log-here-now",
"version": "0.3.7",
"description": "Log right here, right now. (Log-it, CHI 2023)",
"main": "lib/index.js",
"types": "lib/types/index.d.ts",
"scripts": {
"start": "webpack-dev-server --config example/webpack.config.js --env development",
"build": "webpack --config webpack.config.js --env production",
"format": "prettier --write \"**/*.{js,json,md,html,scss,ts,tsx}\"",
"prepare": "husky install",
"ext:init": "yo code",
"netlify": "webpack --config example/webpack.config.js --env production"
},
"repository": {
"type": "git",
"url": "git+https://github.com/peilingjiang/log.git"
},
"author": "Peiling Jiang",
"license": "MIT",
"bugs": {
"url": "https://github.com/peilingjiang/log/issues"
},
"homepage": "https://github.com/peilingjiang/log#readme",
"devDependencies": {
"@babel/core": "^7.21.3",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.21.0",
"@svgr/webpack": "^7.0.0",
"@types/react": "^18.0.29",
"@types/react-dom": "^18.0.11",
"babel-loader": "^9.1.2",
"css-loader": "^6.7.3",
"eslint": "^8.36.0",
"eslint-plugin-react": "^7.32.2",
"file-loader": "^6.2.0",
"generator-code": "^1.7.5",
"husky": "^8.0.3",
"lint-staged": "^13.2.0",
"mini-css-extract-plugin": "^2.7.5",
"prettier": "^2.8.7",
"react-router-dom": "^6.9.0",
"remote-calibrator": "~0.6.8",
"sass": "^1.60.0",
"sass-loader": "^13.2.1",
"style-loader": "^3.3.2",
"ts-loader": "^9.4.2",
"typescript": "^4.9.5",
"webpack": "^5.76.3",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.13.1",
"yo": "^4.3.1"
},
"dependencies": {
"error-stack-parser": "^2.1.4",
"leader-line-new": "^1.1.9",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-fast-compare": "^3.2.1",
"socket.io-client": "^4.6.1",
"stacktrace-js": "^2.0.2",
"tinycolor2": "^1.6.0",
"uuid": "^9.0.0"
},
"type": "module",
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.{js,json,md,html,scss,ts,tsx}": "prettier --write"
},
"files": [
"lib"
]
}