forked from akveo/react-native-ui-kitten
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
98 lines (98 loc) · 4.1 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "react-native-ui-kitten",
"version": "4.2.0",
"license": "MIT",
"author": "akveo <contact@akveo.com>",
"homepage": "https://github.com/akveo/react-native-ui-kitten#readme",
"repository": "git+https://github.com/akveo/react-native-ui-kitten.git",
"bugs": {
"url": "https://github.com/akveo/react-native-ui-kitten/issues"
},
"scripts": {
"start": "npm run start:pg:dev",
"start:pg": "npm run install:pg && npm start --prefix ./src/playground",
"start:pg:prod": "npm run env:set -- prod && npm run start:pg",
"start:pg:dev": "npm run env:set -- dev && npm run start:pg",
"env:set": "node ./scripts/environment/set-env.js",
"build": "./scripts/build/compile-ts.sh",
"build:transform": "./scripts/build/transform-paths.sh",
"build:dev": "npm run build -- dev && npm run build:transform -- dev",
"build:prod": "npm run build -- prod && npm run build:transform -- prod",
"clean": "rimraf ./dist",
"docs:parse": "gulp docs",
"docs:build": "cd docs && npm run build",
"docs:build:prod": "cd docs && npm run build:prod",
"docs:serve": "cd docs && npm start",
"docs:start": "npm run docs:parse && npm run docs:serve",
"conventional-changelog": "conventional-changelog",
"version:changelog": "npm run conventional-changelog -- -i CHANGELOG.md -s",
"lint:src": "tslint -c ./tslint.json ./src/framework/**/*.{ts,tsx}",
"lint:pg": "tslint -c ./tslint.json ./src/playground/src/**/*.{ts,tsx}",
"lint": "npm run lint:src && npm run lint:pg",
"ci:install": "npm ci && npm run ci:install:pg",
"ci:install:pg": "( cd ./src/playground && npm ci )",
"ci:lint": "npm run lint",
"ci:build": "npm run build:prod",
"ci:test": "npm t -- --ci --coverage && cat ./dist/jest/coverage/lcov.info | coveralls",
"install:pg": "( cd ./src/playground && npm i )",
"release:prepare": "npm run clean && npm run build:prod",
"release:validate": "npm run lint && npm run test",
"publish:framework": "./scripts/publish/publish-framework.sh",
"publish:framework:beta": "npm run publish:framework -- beta",
"publish:modules": "./scripts/publish/publish-modules.sh",
"publish:modules:beta": "npm run publish:modules -- beta",
"release:framework": "npm run release:prepare && npm run release:validate && npm run publish:framework",
"release:modules": "npm run release:prepare && npm run release:validate && npm run publish:modules",
"release:framework:beta": "npm run release:prepare && npm run release:validate && npm run publish:framework:beta",
"release:modules:beta": "npm run release:prepare && npm run release:validate && npm run publish:modules:beta",
"test": "jest"
},
"dependencies": {
"@eva-design/dss": "^1.2.0",
"@eva-design/eva": "^1.2.0",
"@eva-design/processor": "^1.2.0",
"hoist-non-react-statics": "^3.2.1",
"@welldone-software/why-did-you-render": "^3.3.3",
"date-fns": "^1.30.1",
"fecha": "3.0.3",
"lodash.merge": "^4.6.1",
"moment": "^2.24.0",
"react-native-eva-icons": "^1.1.0",
"react-native-svg": "^9.5.1"
},
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/runtime": "^7.1.2",
"@types/gulp": "^3.8.36",
"@types/gulp-replace": "0.0.31",
"@types/jest": "^24.0.13",
"@types/lodash.merge": "^4.6.6",
"@types/react": "^16.8.19",
"@types/react-native": "^0.57.60",
"@types/react-navigation": "^3.0.7",
"@types/react-test-renderer": "^16.9.0",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^23.6.0",
"babel-plugin-module-resolver": "^3.2.0",
"conventional-changelog-cli": "^2.0.21",
"coveralls": "^3.0.2",
"del": "^4.1.1",
"doc-prsr": "^2.2.3",
"gulp": "^3.9.1",
"gulp-replace": "^1.0.0",
"gulp-typedoc": "^2.2.1",
"husky": "^1.1.2",
"jest": "^24.9.0",
"metro-react-native-babel-preset": "^0.49.0",
"react": "16.8.3",
"react-native": "^0.59.8",
"react-native-testing-library": "^1.5.0",
"react-test-renderer": "16.8.3",
"rimraf": "^2.6.2",
"ts-node": "^3.2.2",
"tscpaths": "0.0.9",
"tslint": "^5.12.1",
"typedoc": "^0.14.2",
"typescript": "^3.5.1"
}
}