-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.17 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.17 KB
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
{
"name": "luna-js-monorepo",
"version": "1.0.0",
"description": "Static Site Generation & SSR framework for custom-elements.",
"main": "index.js",
"type": "module",
"scripts": {
"test": "mocha test/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/webtides/luna-js.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/webtides/luna-js/issues"
},
"homepage": "https://github.com/webtides/luna-js#readme",
"private": true,
"workspaces": [
"packages/*"
],
"devDependencies": {
"@babel/core": "^7.24.7",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-decorators": "^7.24.7",
"@node-loader/babel": "^2.1.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^7.0.4",
"lerna": "^4.0.0",
"lint-staged": "^12.5.0",
"mocha": "^10.6.0",
"nyc": "^15.1.0",
"prettier": "^2.8.8"
},
"dependencies": {
"dotenv": "^16.4.5"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,json,yaml,yml,md}": [
"prettier --write"
]
}
}