This repository was archived by the owner on Jun 7, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.45 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.45 KB
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
{
"name": "react-native-sortable-flatlist",
"version": "0.0.0",
"description": "",
"main": "dist/index.js",
"types": "types/index.d.ts",
"author": "Dimitar Nestorov <opensource@dimitarnestorov.com> (https://dimitarnestorov.com)",
"license": "MIT",
"scripts": {
"clean": "rimraf dist && rimraf types",
"build": "npm run clean && webpack-cli --config-name module --mode production",
"watch": "npm run clean && webpack-cli --config-name module --mode development --watch",
"clean-app": "rimraf app/dist",
"watch-app": "npm run clean-app && webpack-cli --build-delimiter EOL --config-name app --mode development --watch",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"@types/react-native": "^0.55.19",
"eslint": "^4.19.1",
"eslint-config-dimitarnestorov": "^1.1.1",
"react": "16.3.1",
"react-native": "0.55.4",
"rimraf": "^2.6.2",
"ts-loader": "^4.4.1",
"tslint": "^5.10.0",
"tslint-loader": "^3.6.0",
"typescript": "^2.9.2",
"webpack": "^4.12.0",
"webpack-cli": "^3.0.7"
},
"peerDependencies": {
"react": "^16.3.1",
"react-native": "^0.55.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/codemotionapps/react-native-sortable-flatlist.git"
},
"bugs": {
"url": "https://github.com/codemotionapps/react-native-sortable-flatlist/issues"
},
"homepage": "https://github.com/codemotionapps/react-native-sortable-flatlist#readme"
}