-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.87 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
{
"name": "lean-js-app-starter",
"version": "1.1.0",
"description": "Starter JavaScript/TypeScript projects for kicking off your web, Node.js, and native desktop apps",
"author": "Matthew Lean <[email protected]> (https://mattlean.com)",
"license": "MIT",
"scripts": {
"format": "npm run format:check",
"format:check": "prettier --check .",
"format:write": "prettier --write .",
"lint": "eslint .",
"lint:fix": "npm run lint -- --fix",
"lint-staged": "lint-staged",
"prepare": "node .husky/install.mjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mattlean/lean-js-app-starter.git"
},
"bugs": {
"url": "https://github.com/mattlean/lean-js-app-starter/issues"
},
"homepage": "https://github.com/mattlean/lean-js-app-starter#readme",
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"eslint": "^8.41.0",
"eslint-config-prettier": "^9.1.0",
"husky": "^9.0.11",
"lint-staged": "^13.2.2",
"prettier": "3.2.5"
},
"workspaces": [
"examples/asset-test",
"examples/counter",
"examples/counter-react",
"examples/markdown-editor",
"examples/notes-api",
"examples/starchan",
"examples/tic-tac-toe",
"starters/basic-browser",
"starters/basic-browser-ts",
"starters/basic-electron",
"starters/basic-electron-ts",
"starters/basic-node",
"starters/basic-node-ts",
"starters/express-mongo",
"starters/express-mongo-ts",
"starters/express-postgres",
"starters/express-postgres-ts",
"starters/react-browser",
"starters/react-browser-ts",
"starters/react-electron",
"starters/react-electron-ts",
"starters/react-express-mongo-ssr",
"starters/react-express-mongo-ssr-ts",
"starters/react-express-postgres-ssr",
"starters/react-express-postgres-ssr-ts",
"ljas-webpack"
],
"private": true
}