UNPKG

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