-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
42 lines (42 loc) · 1.09 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
{
"name": "react-native-stacks",
"version": "1.0.1",
"description": "SwiftUI inspired Stacks and Spacer views",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"clean-build": "npm run clean && npm run build && copyfiles package.json README.md dist",
"watch": "tsc -w",
"dev": "nodemon dist/",
"clean": "rimraf ./dist/*",
"test": "echo \"Error: no test specified\" && exit 1",
"publish:custom": "npm run clean-build && cd dist && npm publish && cd -"
},
"author": "Andrew Levy <[email protected]>",
"license": "ISC",
"devDependencies": {
"@types/node": "^14.14.10",
"@types/react": "^16.9.56",
"@types/react-native": "^0.63.34",
"copyfiles": "^2.4.1",
"esbuild": "^0.8.50",
"nodemon": "^2.0.6",
"rimraf": "^3.0.2",
"tslint": "^6.1.3",
"typescript": "^4.0.5"
},
"peerDependencies": {
"react": "*",
"react-native": "*"
},
"repository": {
"type": "git",
"url": "https://github.com/andrew-levy/react-native-stacks"
},
"keywords": [
"react",
"native",
"swiftui"
]
}