-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
49 lines (49 loc) · 1.6 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
{
"name": "react-native-styl",
"version": "0.0.1",
"description": "",
"author": "Danilo Woznica <[email protected]>",
"main": "build/index.js",
"types": "build/types/index.d.ts",
"scripts": {
"lint": "eslint \"lib/**/*.{js,jsx,ts,tsx}\"",
"format": "prettier \"src/**/*.+(ts|tsx|js|jsx|json|yml|yaml|md|mdx)\" --write",
"dev": "npm run build && rm -rf ./examples/styl && cp -R ./lib ./examples/styl",
"test": "jest ./lib",
"validate": "tsc --noEmit",
"build": "npm run build:clean && npm run build:ts",
"build:ts": "tsc",
"build:clean": "rm -rf ./build"
},
"license": "ISC",
"devDependencies": {
"@babel/core": "7.9.6",
"@babel/preset-env": "7.9.6",
"@commitlint/cli": "^9.1.2",
"@commitlint/config-conventional": "8.3.4",
"@semantic-release/commit-analyzer": "8.0.1",
"@semantic-release/git": "9.0.0",
"@semantic-release/github": "7.0.5",
"@semantic-release/npm": "7.0.5",
"@semantic-release/release-notes-generator": "9.0.1",
"@significa/eslint-config": "0.0.17",
"@significa/prettier-config": "0.0.17",
"@significa/tsconfig-config": "0.0.17",
"@testing-library/react-hooks": "^4.0.0",
"@types/jest": "^25.2.2",
"@types/react": "16.9.35",
"@types/react-native": "0.62.9",
"@types/react-test-renderer": "^16.9.2",
"babel-jest": "26.0.1",
"husky": "^4.2.5",
"jest": "26.0.1",
"metro-react-native-babel-preset": "0.59.0",
"react": "^16.13.1",
"react-native": "^0.64.1",
"react-test-renderer": "16.13.1"
},
"peerDependencies": {
"react": "^16.8.0",
"react-native": "^0.62.0"
}
}