UNPKG

2.08 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.14.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 "NOTICES.txt"
19 ],
20 "bin": {
21 "create-gooddata-react-app": "bin/create-gooddata-react-app"
22 },
23 "scripts": {
24 "test": "jest --watch",
25 "test-once": "jest",
26 "test-ci": "jest --config jest.ci.json",
27 "eslint": "eslint --ext .js,.jsx src/",
28 "validate": "yarn eslint",
29 "validate-ci": "yarn validate -f checkstyle -o ci/results/eslint-results.xml",
30 "prepublishOnly": "npm run build",
31 "build": "bash ./scripts/build.sh",
32 "start": "node ./dist/index.js",
33 "?start-unsafe": "# use this for testing against staging and other envs with untrustworthy certificates. DO NOT USE in production!!!",
34 "start-unsafe": "cross-env NODE_TLS_REJECT_UNAUTHORIZED=0 node ./dist/index.js"
35 },
36 "dependencies": {
37 "chalk": "^2.4.2",
38 "commander": "^2.20.0",
39 "execa": "^2.0.3",
40 "fs-extra": "^8.1.0",
41 "globby": "^11.0.1",
42 "inquirer": "^6.3.1",
43 "listr": "^0.14.3",
44 "lodash": "^4.17.15",
45 "mkdirp": "0.5.5",
46 "tar": "^4.4.10"
47 },
48 "devDependencies": {
49 "@babel/cli": "^7.13.0",
50 "@babel/core": "^7.13.8",
51 "@babel/plugin-transform-typescript": "^7.13.0",
52 "@babel/preset-env": "^7.13.9",
53 "@gooddata/eslint-config": "^1.0.0",
54 "cross-env": "^5.2.0",
55 "eslint": "^4.19.1",
56 "eslint-config-prettier": "^6.1.0",
57 "esm": "^3.2.25",
58 "jest": "26.4.2",
59 "jest-junit": "^8.0.0",
60 "prettier": "2.2.1",
61 "rimraf": "^2.6.3",
62 "rollup": "^1.16.4",
63 "rollup-plugin-terser": "^5.1.0"
64 },
65 "jest": {
66 "testMatch": [
67 "<rootDir>/src/**/__tests__/*.test.js"
68 ],
69 "transformIgnorePatterns": [
70 "<rootDir>/node_modules/"
71 ]
72 }
73}