-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.95 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
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "quick-brick-official-plugins",
"version": "0.0.1",
"description": "",
"main": "index.js",
"private": true,
"workspaces": [
"plugins/*",
"development-app"
],
"scripts": {
"reset_dev_app": "rm -rf ./development-app/*",
"zapplicaster": "node_modules/.bin/zapplicaster-cli prepare --yarn --destination-path development-app",
"zapplicaster:prepare": "node_modules/.bin/zapplicaster-cli prepare -y -d development-app",
"zapplicaster:reload": "node_modules/.bin/zapplicaster-cli reload_config -d development-app",
"clean:node": "rm -rf node_modules **/node_modules yarn.lock && yarn",
"start": "./node_modules/.bin/react-native start --projectRoot ./development-app",
"start:web": "yarn workspace quick-brick-app start",
"run:ios": "node_modules/.bin/zapplicaster-cli run ios & yarn start",
"publish:plugin": "node_modules/.bin/zapplicaster-cli publish_plugin -y"
},
"keywords": [],
"author": "Alex Khomich",
"license": "ISC",
"devDependencies": {
"@applicaster/zapplicaster-cli": "^4.0.1-rc.26",
"babel-eslint": "^10.0.3",
"eslint": "^5.3.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.16.0",
"react": "16.11.0",
"react-native": "0.62.2",
"react-native-web": "0.11.5"
},
"dependencies": {
"@types/jest": "^25.2.1",
"@types/react": "^16.9.35",
"@types/react-native": "^0.62.7",
"cli-task-runner": "^1.0.4",
"dotenv": "^8.1.0",
"ejs": "3.0.1",
"moment": "2.24.0",
"plist": "3.0.1",
"ramda": "^0.27.0",
"react-dom": "16.8.3",
"semver": "7.1.1",
"typescript": "^3.9.2"
},
"resolutions": {
"lodash": "^4.17.19",
"jsrsasign": "^8.0.19",
"minimist": "^0.2.1",
"mem": "^4.0.0"
},
"applicaster": {
"moduleMap": {
"@applicaster/zapp-pipes-provider-demo-typescript-dsp": "../plugins/demo-typescript-dsp/src"
}
}
}