UNPKG

2.06 kBJSONView Raw
1{
2 "name": "@gooddata/create-gooddata-react-app",
3 "description": "A CLI tool that creates a new React project connected to the GoodData platform",
4 "keywords": [
5 "gooddata",
6 "react"
7 ],
8 "version": "0.11.0",
9 "license": "BSD-3-Clause",
10 "repository": {
11 "type": "git",
12 "url": "https://github.com/gooddata/gooddata-create-gooddata-react-app.git"
13 },
14 "main": "dist/index.js",
15 "files": [
16 "dist",
17 "bin"
18 ],
19 "bin": {
20 "create-gooddata-react-app": "bin/create-gooddata-react-app"
21 },
22 "scripts": {
23 "test": "jest --watch",
24 "test-once": "jest",
25 "test-ci": "jest --config jest.ci.json",
26 "eslint": "eslint --ext .js,.jsx src/",
27 "validate": "yarn eslint",
28 "validate-ci": "yarn validate -f checkstyle -o ci/results/eslint-results.xml",
29 "prepublishOnly": "npm run build",
30 "build": "bash ./scripts/build.sh",
31 "start": "node ./dist/index.js",
32 "?start-unsafe": "# use this for testing against staging and other envs with untrustworthy certificates. DO NOT USE in production!!!",
33 "start-unsafe": "cross-env NODE_TLS_REJECT_UNAUTHORIZED=0 node ./dist/index.js"
34 },
35 "dependencies": {
36 "chalk": "^2.4.2",
37 "commander": "^2.20.0",
38 "execa": "^2.0.3",
39 "fs-extra": "^8.1.0",
40 "globby": "^11.0.1",
41 "inquirer": "^6.3.1",
42 "listr": "^0.14.3",
43 "lodash": "^4.17.15",
44 "mkdirp": "0.5.5",
45 "tar": "^4.4.10"
46 },
47 "devDependencies": {
48 "@babel/cli": "^7.13.0",
49 "@babel/core": "^7.13.8",
50 "@babel/plugin-transform-typescript": "^7.13.0",
51 "@babel/preset-env": "^7.13.9",
52 "@gooddata/eslint-config": "^1.0.0",
53 "cross-env": "^5.2.0",
54 "eslint": "^4.19.1",
55 "eslint-config-prettier": "^6.1.0",
56 "esm": "^3.2.25",
57 "jest": "26.4.2",
58 "jest-junit": "^8.0.0",
59 "prettier": "2.2.1",
60 "rimraf": "^2.6.3",
61 "rollup": "^1.16.4",
62 "rollup-plugin-terser": "^5.1.0"
63 },
64 "jest": {
65 "testMatch": [
66 "<rootDir>/src/**/__tests__/*.test.js"
67 ],
68 "transformIgnorePatterns": [
69 "<rootDir>/node_modules/"
70 ]
71 }
72}