-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
51 lines (51 loc) · 1.61 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
{
"name": "react-storefront-salesforce-commerce-cloud-connector",
"version": "0.0.2",
"description": "Salesforce Commerce Cloud Connector",
"module": "./index.js",
"watch": {
"push-build": {
"patterns": [
"src"
],
"ignore": "*/index.js",
"extensions": "js,ts",
"quiet": false
}
},
"scripts": {
"release": "npm run build && cd dist && npm publish && cd ..",
"test": "jest",
"watch": "npm-watch",
"ts:watch": "tsc --watch",
"ts:check": "tsc",
"push-build": "npm run build && cd dist && yalc push && cd ..",
"clean": "mkdir -p dist; cd dist; ls | grep -v 'node_modules\\|package-lock.json' | xargs rm -rf; cd ../;",
"build": "npm run ts:check && npm run build:prep && NODE_ENV=production npm run build:sources",
"build:prep": "npm run clean && cp package.json README.md dist",
"build:sources": "babel ./src --source-maps --out-dir dist --extensions \".js,.ts\""
},
"author": "",
"license": "ISC",
"dependencies": {
"isomorphic-unfetch": "^3.0.0",
"lodash": "^4.17.15"
},
"devDependencies": {
"@babel/cli": "^7.7.7",
"@babel/core": "^7.7.7",
"@babel/plugin-proposal-class-properties": "^7.8.0",
"@babel/plugin-transform-runtime": "^7.7.6",
"@babel/preset-env": "^7.7.7",
"@babel/preset-react": "^7.7.4",
"@babel/preset-typescript": "^7.10.1",
"@types/isomorphic-fetch": "0.0.35",
"@types/lodash": "^4.14.155",
"babel-loader": "^8.0.6",
"babel-plugin-transform-imports": "^2.0.0",
"lodash": "^4.17.15",
"npm-watch": "^0.6.0",
"prettier": "^1.19.1",
"typescript": "^3.9.5"
}
}