-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
29 lines (29 loc) · 907 Bytes
/
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
{
"name": "react-native-code-snippets",
"version": "1.0.0",
"description": "This project contains several high-quality code snippets for React and React Native apps written in TypeScript or JavaScript.",
"main": "index.js",
"scripts": {
"generate-readme": "npx ts-node generate_readme.ts",
"add-readme": "git add ./README.md"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Charanor/react-native-code-snippets.git"
},
"author": "Jesper Sporron",
"license": "CC0-1.0",
"bugs": {
"url": "https://github.com/Charanor/react-native-code-snippets/issues"
},
"homepage": "https://github.com/Charanor/react-native-code-snippets#readme",
"dependencies": {
"@types/node": "^13.11.1",
"ts-node": "^8.8.2",
"typescript": "^3.8.3"
},
"devDependencies": {
"pre-commit": "^1.2.2"
},
"pre-commit": ["generate-readme", "add-readme"]
}