-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 940 Bytes
/
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
{
"name": "vizor",
"version": "0.1.0",
"repository": "[email protected]:llll-org/vizor.git",
"author": "Dan Burzo <[email protected]>",
"license": "MIT",
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"esbuild": "^0.16.12",
"esm": "^3.2.25",
"prettier": "2.8.1",
"pretty-quick": "^3.1.3",
"tape": "^5.6.1"
},
"scripts": {
"prepare": "git config core.hooksPath .git-hooks",
"start": "esbuild --servedir=dist && cp src/index.html dist/index.html",
"build": "esbuild src/index.js --bundle --minify --outdir=dist && cp src/index.html dist/index.html",
"deploy": "npm run build && ./deploy.sh",
"test": "tape -r esm 'src/**/__tests__/*.test.js'"
},
"prettier": {
"bracketSpacing": true,
"semi": true,
"singleQuote": true,
"trailingComma": "none",
"useTabs": true,
"tabWidth": 4,
"jsxBracketSameLine": false,
"arrowParens": "avoid",
"printWidth": 100
}
}