-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
83 lines (83 loc) · 2.11 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "create-universal-react",
"version": "0.18.1",
"description": "A React accelerator to generate SSR, SSG & Micro-App architecture types essential tooling.",
"license": "MIT",
"main": "index.js",
"bin": {
"create-universal-react": "index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pagesource/universal-react-v2.git"
},
"author": {
"name": "PageSource",
"email": "[email protected]",
"url": "https://github.com/pagesource"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"engines": {
"npm": ">=7.0.0",
"node": ">=14.0.0"
},
"scripts": {
"lint": "eslint --ignore-path .gitignore **/*.js",
"lint:fix": "eslint --fix --ignore-path .gitignore **/*.js",
"prettify": "prettier --ignore-path .gitignore --write \"**/*.(js|jsx|ts|tsx)\"",
"test": "echo no tests found",
"stopPrepublishOnly": "npm run lint && npm test",
"release": "changeset publish",
"debug": "node index.js"
},
"files": [
"*",
"*/**/*"
],
"bugs": {
"url": "https://github.com/pagesource/universal-react-v2/issues"
},
"homepage": "https://github.com/pagesource/universal-react-v2#readme",
"keywords": [
"React",
"Architecture",
"Generator",
"Micro-App",
"Micro-Frontend",
"Framework",
"Accelerator"
],
"dependencies": {
"axios": "^0.26.0",
"chalk": "4.1.2",
"cli-spinner": "^0.2.10",
"copy-dir": "1.3.0",
"date-and-time": "^2.1.1",
"deepmerge": "4.2.2",
"inquirer": "8.1.5",
"node-emoji": "^1.11.0",
"ora": "^6.0.1"
},
"devDependencies": {
"@changesets/cli": "^2.20.0",
"all-contributors-cli": "^6.20.0",
"eslint": "^8.9.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"husky": "^4.3.8",
"lint-staged": "11.1.2",
"prettier": "^2.5.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}