-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathpackage.json
76 lines (76 loc) · 2.07 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
{
"name": "@gooddata/create-gooddata-react-app",
"description": "A CLI tool that creates a new React project connected to the GoodData platform",
"keywords": [
"gooddata",
"react"
],
"version": "0.21.1",
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "https://github.com/gooddata/gooddata-create-gooddata-react-app.git"
},
"main": "dist/index.js",
"files": [
"dist",
"bin",
"NOTICES.txt"
],
"bin": {
"create-gooddata-react-app": "bin/create-gooddata-react-app"
},
"scripts": {
"test": "jest --watch",
"test-once": "jest",
"test-ci": "jest --config jest.ci.json",
"eslint": "eslint --ext .js,.jsx src/",
"validate": "yarn eslint",
"validate-ci": "yarn validate -f checkstyle -o ci/results/eslint-results.xml",
"prepublishOnly": "npm run build",
"build": "bash ./scripts/build.sh",
"start": "node ./dist/index.js",
"?start-unsafe": "# use this for testing against staging and other envs with untrustworthy certificates. DO NOT USE in production!!!",
"start-unsafe": "cross-env NODE_TLS_REJECT_UNAUTHORIZED=0 node ./dist/index.js"
},
"dependencies": {
"chalk": "^2.4.2",
"commander": "^2.20.0",
"execa": "^2.0.3",
"fs-extra": "^8.1.0",
"globby": "^11.0.1",
"inquirer": "^8.2.0",
"listr2": "^3.13.5",
"lodash": "^4.17.15",
"mkdirp": "^1.0.4",
"tar": "^6.1.11"
},
"devDependencies": {
"@babel/cli": "^7.16.0",
"@babel/core": "^7.13.8",
"@babel/plugin-transform-typescript": "^7.16.1",
"@babel/preset-env": "^7.16.5",
"@gooddata/eslint-config": "^1.0.0",
"cross-env": "^7.0.3",
"eslint": "^4.19.1",
"eslint-config-prettier": "^6.1.0",
"esm": "^3.2.25",
"jest": "27.4.5",
"jest-junit": "^13.0.0",
"prettier": "2.5.1",
"rimraf": "^2.6.3",
"rollup": "^1.16.4",
"rollup-plugin-terser": "^5.1.0"
},
"jest": {
"testMatch": [
"<rootDir>/src/**/__tests__/*.test.js"
],
"transformIgnorePatterns": [
"<rootDir>/node_modules/"
]
},
"engines": {
"node": ">=16"
}
}