-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·48 lines (48 loc) · 1.37 KB
/
package.json
File metadata and controls
executable file
·48 lines (48 loc) · 1.37 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
44
45
46
47
48
{
"name": "@sample-stack/counter-module-browser",
"version": "0.0.1",
"description": "Sample core for higher packages to depend on",
"license": "ISC",
"author": "CDMBase LLC",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"scripts": {
"build": "yarn build:clean && yarn build:lib",
"build:clean": "rimraf lib",
"build:lib": "rollup -c rollup.config.mjs",
"build:lib:watch": "yarn build:lib -- --watch",
"jest": "./node_modules/.bin/jest",
"prepublish": "yarn build",
"test": "cross-env ENV_FILE=../../config/test/test.env jest",
"test:debug": "npm test -- --runInBand",
"test:watch": "npm test -- --watch",
"watch": "yarn build:lib:watch"
},
"dependencies": {
"@sample-stack/platform-browser": "link:../../../packages/sample-platform/browser",
"antd": "~5.1.7",
"react-router": "^6.4.0",
"react-router-dom": "^6.4.0"
},
"peerDependencies": {
"@common-stack/client-react": "*",
"@rollup/plugin-graphql": "*",
"@rollup/plugin-image": "*",
"@rollup/plugin-typescript": "*",
"react": "*",
"react-native": "*",
"react-redux": "*",
"react-router": "*",
"react-router-dom": "*",
"redux": "*",
"redux-observable": "*",
"rollup-plugin-string": "*",
"rxjs": "*"
},
"publishConfig": {
"access": "public"
},
"typescript": {
"definition": "lib/index.d.ts"
}
}