-
Notifications
You must be signed in to change notification settings - Fork 48
/
Copy pathpackage.json
67 lines (67 loc) · 1.55 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": "nat-utools",
"version": "2.0.1",
"description": "",
"homepage": ".",
"author": "lblblong",
"license": "ISC",
"scripts": {
"serve": "vite build -w",
"serve:preload": "cd ./packages/preload && npm run serve",
"build": "npm run build:preload && npm run build:html",
"build:html": "vite build",
"build:preload": "cd ./packages/preload && npm run build",
"commit": "git-cz"
},
"dependencies": {
"classnames": "^2.3.1",
"dayjs": "^1.10.7",
"is-wsl": "^2.2.0",
"lbl-popups": "^1.1.1",
"mobx": "^6.3.3",
"mobx-react": "^7.2.0",
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"devDependencies": {
"@types/localtunnel": "^2.0.1",
"@types/node": "^12.0.0",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@vitejs/plugin-react": "^1.0.7",
"commitizen": "^4.2.4",
"csstype": "^3.0.9",
"cz-customizable": "^6.3.0",
"react-scripts": "4.0.3",
"sass": "^1.42.1",
"typescript": "^4.1.2",
"utility-types": "^3.10.0",
"utools-helper": "^1.4.6",
"vite": "^2.6.14"
},
"config": {
"commitizen": {
"path": "node_modules/cz-customizable"
}
},
"prettier": {
"semi": false,
"singleQuote": true,
"tabWidth": 2,
"printWidth": 120,
"trailingComma": "all",
"jsxSingleQuote": true
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}