UNPKG

1.65 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.1.28",
9 "license": "UNLICENSED",
10 "main": "dist/index.js",
11 "files": [
12 "dist",
13 "bootstrap",
14 "bin"
15 ],
16 "bin": {
17 "create-gooddata-react-app": "bin/create-gooddata-react-app"
18 },
19 "scripts": {
20 "test": "jest",
21 "prepublishOnly": "npm run build",
22 "create-data-archive": "tar --exclude='node_modules' --exclude='build' -czf ./dist/bootstrap.tgz -C bootstrap .",
23 "build": "rimraf dist && rollup -c && npm run create-data-archive",
24 "start": "node ./dist/index.js",
25 "?start-unsafe": "# use this for testing against staging and other envs with untrustworthy certificates. DO NOT USE in production!!!",
26 "start-unsafe": "cross-env NODE_TLS_REJECT_UNAUTHORIZED=0 node ./dist/index.js"
27 },
28 "dependencies": {
29 "@gooddata/gooddata-js": "^11.14.1",
30 "chalk": "^2.4.2",
31 "commander": "^2.20.0",
32 "cross-env": "^5.2.0",
33 "execa": "^2.0.3",
34 "fs-extra": "^8.0.1",
35 "inquirer": "^6.3.1",
36 "listr": "^0.14.3",
37 "lodash": "^4.17.11",
38 "mkdirp": "^0.5.1",
39 "resolve-global": "^1.0.0",
40 "tar": "^4.4.10"
41 },
42 "devDependencies": {
43 "@babel/core": "^7.5.4",
44 "@babel/preset-env": "^7.5.4",
45 "jest": "24.7.1",
46 "rimraf": "^2.6.3",
47 "rollup": "^1.16.4",
48 "rollup-plugin-terser": "^5.1.0"
49 },
50 "jest": {
51 "testMatch": [
52 "<rootDir>/src/**/__tests__/*.test.js"
53 ],
54 "transformIgnorePatterns": [
55 "<rootDir>/node_modules/"
56 ]
57 }
58}