-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
29 lines (29 loc) · 986 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": "crossplatform-push-notifications-example",
"version": "1.1.0",
"description": "Example for crossplatform push notifications using node-pushnotifications and React Native",
"author": "Alexander Friedl",
"license": "MIT",
"scripts": {
"app-pkg": "cd app && npm start",
"android": "cd app && npm run android",
"ios": "cd app && npm run ios",
"server": "cd server && npm start",
"lint": "eslint server/js/ app/js/",
"postinstall": "cd app && npm install && cd ../server && npm install"
},
"devDependencies": {
"eslint": "^4.5.0",
"eslint-config-airbnb": "^15.1.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.3.0"
},
"bugs": {
"url": "https://github.com/alex-friedl/crossplatform-push-notifications-example/issues"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]:alex-friedl/crossplatform-push-notifications-example.git"
}
}