forked from brandingbrand/flagship
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1009 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
30
31
32
33
34
35
36
{
"name": "@brandingbrand/fsshopify",
"version": "0.1.0",
"description": "Shopify Commerce Data Layer for Flagship",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"license": "MIT",
"scripts": {
"prepare": "tsc",
"tsc:test": "rm -rf ./test/dist && tsc -w -p tsconfig.test.json",
"tsc:watch": "tsc -w --preserveWatchOutput",
"test": "jest /fsshopify/ --colors --config ../../jest.json"
},
"dependencies": {
"@brandingbrand/fscommerce": "^0.1.0",
"@brandingbrand/fsfoundation": "^0.1.0",
"@brandingbrand/fsi18n": "^0.1.0",
"@brandingbrand/fsnetwork": "^0.1.0",
"decimal.js": "^10.0.1",
"react": "^16.3.2",
"react-native": "^0.55.4",
"react-native-navigation": "^1.1.462",
"react-native-payments": "^0.7.0"
},
"devDependencies": {
"axios": "^0.18.0"
},
"rnpm": {
"commands": {
"prelink": "react-native link react-native-payments"
}
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
}
}