-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.25 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": "@significa/start",
"description": "Opinionated Significa's bootstrap CLI to start React projects based on Create React App, NextJS or GatsbyJS.",
"version": "0.16.1",
"author": "Significa Lda. <[email protected]>",
"bin": {
"significa-start": "bin/run"
},
"bugs": {
"url": "https://github.com/significa/significa-start/issues"
},
"dependencies": {
"@oclif/command": "^1.8.0",
"@oclif/config": "^1.17.0",
"@oclif/plugin-help": "^3.2.2",
"@types/figlet": "^1.5.4",
"@types/inquirer": "^7.3.3",
"chalk": "^4.1.1",
"cli-ux": "^5.6.3",
"execa": "^5.1.1",
"figlet": "^1.5.0",
"inquirer": "^8.1.2",
"jsonfile": "^6.1.0",
"ora": "^5.4.1",
"path": "^0.12.7",
"recursive-readdir": "^2.2.2",
"tmp": "^0.2.1",
"tslib": "^2.3.0"
},
"devDependencies": {
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@semantic-release/commit-analyzer": "^8.0.1",
"@semantic-release/git": "^9.0.0",
"@semantic-release/github": "^8.0.4",
"@semantic-release/npm": "^9.0.1",
"@semantic-release/release-notes-generator": "^10.0.3",
"@significa/eslint-config": "2.0.0",
"@significa/prettier-config": "2.0.0",
"@significa/tsconfig-config": "2.0.0",
"@types/jsonfile": "^6.0.1",
"@types/node": "^16.4.0",
"@types/react-dom": "^17.0.9",
"@types/recursive-readdir": "^2.2.0",
"@types/tmp": "^0.2.1",
"eslint": "^7.31.0",
"husky": "^7.0.1",
"jest": "^27.2.1",
"react": "^17.0.2",
"ts-node": "^10.1.0",
"typescript": "^4.3.5"
},
"engines": {
"node": ">=8.0.0"
},
"files": [
"/bin",
"/lib"
],
"homepage": "https://github.com/significa/significa-start",
"keywords": [
"oclif"
],
"license": "MIT",
"main": "lib/index.js",
"oclif": {
"bin": "significa-start"
},
"repository": {
"type": "git",
"url": "git+https://github.com/significa/significa-start.git"
},
"scripts": {
"lint": "eslint \"./src/**/*.{js,jsx,ts,tsx}\"",
"posttest": "eslint . --ext .ts --config .eslintrc",
"prepack": "rm -rf lib && tsc -b && cp -r src/templates lib",
"test": "echo \"No tests!\" && exit 0"
},
"types": "lib/index.d.ts",
"directories": {
"test": "test"
}
}