This repository has been archived by the owner on Aug 25, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.36 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
{
"name": "@spurtli/ultra-react-native",
"version": "1.0.0",
"description": "Ultra components for React Native",
"keywords": [
"React",
"Ultra",
"Spurtli"
],
"author": "Neele Barthel <hello@neele.codes>",
"contributors": [
"Hannes Moser <box@hannesmoser.at>"
],
"homepage": "https://www.spurtli.com",
"license": "MIT",
"main": "lib/index.js",
"module": "lib/index.es6.js",
"types": "lib/index.d.js",
"directories": {
"lib": "lib",
"test": "tests"
},
"files": [
"lib"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/spurtli/ultra.git"
},
"scripts": {
"build": "yarn build:bundle && yarn build:types",
"build:bundle": "lerna exec --parallel -- rollup --config",
"build:types": "tsc --declaration --emitDeclarationOnly",
"lint": "eslint --config .eslintrc.js --ext .ts,.tsx ./src",
"lint:fix": "eslint --config .eslintrc.js --ext .ts,.tsx ./src --fix",
"start": "yarn watch",
"tsc": "tsc",
"typecheck": "tsc --noEmit",
"watch": "lerna exec --parallel -- rollup --config --watch",
"wml": "wml start"
},
"bugs": {
"url": "https://github.com/spurtli/ultra/issues"
},
"devDependencies": {
"@babel/cli": "^7.6.4",
"@babel/core": "^7.6.4",
"@babel/preset-env": "^7.6.3",
"@babel/preset-react": "^7.6.3",
"@babel/preset-typescript": "^7.6.0",
"@types/color": "^3.0.0",
"@types/node": "^12.7.12",
"@types/react": "^16.9.5",
"@types/react-native": "^0.60.19",
"@types/styled-components": "^4.1.19",
"@typescript-eslint/eslint-plugin": "^2.3.3",
"@typescript-eslint/parser": "^2.3.3",
"eslint": "^6.5.1",
"eslint-config-prettier": "^6.4.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-react": "^7.16.0",
"expo-linear-gradient": "^7.0.1",
"prettier": "^1.18.2",
"react": "^16.10.2",
"react-native": "^0.61.2",
"rollup": "^1.23.1",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-node-resolve": "^5.2.0",
"styled-components": "^4.4.0",
"typescript": "^3.6.4",
"wml": "^0.0.83"
},
"peerDependencies": {
"expo-linear-gradient": "^7.0.1",
"react": "^16.10.2",
"react-native": "^0.61.2",
"styled-components": "^4.4.0"
},
"dependencies": {
"color": "^3.1.2"
}
}