generated from MarvelSQ/template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 2.12 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
{
"name": "template",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest --coverage",
"lint:prettier": "prettier 'src/**/*.{js,ts,tsx}' --check --ignore-unknown",
"lint:eslint": "eslint .",
"lint": "npm run lint:prettier && npm run lint:eslint",
"docs:build": "NODE_ENV=production node docs/scripts/build",
"docs:serve": "NODE_ENV=development node docs/scripts/build",
"version": "conventional-changelog -p angular -i CHANGELOG.md -s && git add CHANGELOG.md",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MarvelSQ/react-simple.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/MarvelSQ/react-simple/issues"
},
"homepage": "https://github.com/MarvelSQ/react-simple#readme",
"devDependencies": {
"@babel/preset-env": "^7.16.0",
"@babel/preset-react": "^7.16.5",
"@babel/preset-typescript": "^7.16.0",
"@babel/standalone": "^7.16.6",
"@commitlint/cli": "^14.1.0",
"@commitlint/config-conventional": "^14.1.0",
"@types/babel__helper-plugin-utils": "^7.10.0",
"@types/codemirror": "^5.60.5",
"@types/jest": "^27.0.2",
"@typescript-eslint/eslint-plugin": "^5.2.0",
"@typescript-eslint/parser": "^5.2.0",
"babel-plugin-tester": "^10.1.0",
"codemirror": "^5.65.0",
"conventional-changelog-cli": "^2.1.1",
"cz-conventional-changelog": "^3.3.0",
"esbuild": "^0.14.8",
"esbuild-svelte": "^0.6.0",
"eslint": "^8.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.4",
"jest": "^27.3.1",
"lint-staged": "^11.2.6",
"prettier": "^2.4.1",
"svelte": "^3.44.3",
"typescript": "^4.4.4"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "eslint --cache --fix",
"**/*": "prettier --write --ignore-unknown",
"*.js": "eslint --cache --fix"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"@babel/core": "^7.16.5",
"@babel/helper-plugin-utils": "^7.16.5"
}
}