This repository has been archived by the owner on Sep 23, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 78
/
package.json
109 lines (109 loc) · 2.78 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "direflow-cli",
"version": "4.0.0",
"description": "Official CLI for Direflow",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"test": "jest",
"update-version": "node scripts/node/updateVersion.js",
"setup-local": "./scripts/bash/setupLocal.sh",
"clean:all": "node ./scripts/node/cleanupAll.js",
"install:all": "node ./scripts/node/installAll.js",
"build:all": "node ./scripts/node/buildAll.js && npm run install:all -- --no-deps",
"build:full": "npm run clean:all && npm run install:all && npm run build:all && npm run clean:all -- --modules",
"cypress:open": "cypress open",
"cypress:run": "cypress run",
"cypress:test": "./scripts/bash/startIntegrationTest.sh"
},
"bin": {
"direflow": "bin/direflow"
},
"files": [
"bin/*",
"dist/*",
"templates/*"
],
"repository": {
"type": "git",
"url": "git@github.com:Silind-Software/direflow.git"
},
"keywords": [
"cli",
"widget",
"web component",
"react",
"typescript"
],
"author": "Silind Software",
"license": "MIT",
"homepage": "https://direflow.io",
"dependencies": {
"boxen": "^6.2.1",
"chalk": "4.1.2",
"commander": "^9.3.0",
"deepmerge": "^4.2.2",
"esm": "^3.2.25",
"handlebars": "^4.7.7",
"inquirer": "^8.2.4",
"mkdirp": "^1.0.4",
"ncp": "^2.0.0",
"rimraf": "^3.0.2",
"to-case": "^2.0.0"
},
"devDependencies": {
"@types/inquirer": "^8.2.1",
"@types/jest": "^28.1.0",
"@types/jsdom": "^16.2.14",
"@types/mkdirp": "^1.0.2",
"@types/mock-fs": "^4.13.1",
"@types/ncp": "^2.0.5",
"@types/node": "^17.0.39",
"@types/rimraf": "^3.0.2",
"@types/webpack": "^5.28.0",
"@typescript-eslint/eslint-plugin": "^5.27.0",
"@typescript-eslint/parser": "^5.27.0",
"cypress": "9.5.0",
"cypress-shadow-dom": "^1.3.0",
"eslint": "^8.17.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.30.0",
"eslint-plugin-react-hooks": "^4.5.0",
"jest": "^28.1.0",
"jsdom": "^19.0.0",
"memfs": "^3.4.7",
"prettier": "^2.6.2",
"start-server-and-test": "^1.14.0",
"ts-jest": "^28.0.4",
"typescript": "^4.7.3"
},
"eslintConfig": {
"extends": "react-app"
},
"jest": {
"roots": [
"<rootDir>/"
],
"moduleFileExtensions": [
"ts",
"js",
"tsx"
],
"transform": {
"^.+\\.(ts|tsx)$": "ts-jest"
},
"testMatch": [
"**/**/*.test.(ts|tsx)"
],
"testPathIgnorePatterns": [
"<rootDir>/templates",
"<rootDir>/packages",
"<rootDir>/cypress"
],
"collectCoverage": true
}
}