-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
71 lines (71 loc) · 2.63 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
63
64
65
66
67
68
69
70
71
{
"name": "@pwrdrvr/microapps-app-release-workspace",
"version": "0.0.0",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/pwrdrvr/microapps-app-release.git"
},
"author": "PwrDrvr LLC",
"license": "MIT",
"homepage": "https://github.com/pwrdrvr/microapps-core#readme",
"workspaces": [
"packages/*"
],
"resolutions": {
"class-transformer": "0.5.1"
},
"scripts": {
"build": "tsc --build tsconfig.json",
"build:jsii-all": "npm run -w @pwrdrvr/microapps-app-release-cdk build:jsii-all",
"build:next": "npm run -w @pwrdrvr/microapps-app-release build",
"clean": "npm run clean:dist && npm run clean:tsbuildinfo",
"clean:deep": "npm run clean:dist && npm run clean:next && npm run clean:modules && npm run clean:tsbuildinfo",
"clean:next": "npx rimraf .next",
"clean:dist": "npm exec --workspaces -- npx rimraf dist && npx rimraf dist",
"clean:modules": "npm exec --workspaces -- npx rimraf node_modules && npx rimraf node_modules",
"clean:tsbuildinfo": "npm exec --workspaces -- npx rimraf tsconfig.tsbuildinfo",
"cloc": "cloc --exclude-dir=node_modules,.storybook.next,storybook-static,cdk.out --exclude-ext=json .",
"dev": "NODE_CONFIG_ENV=${NODE_CONFIG_ENV:-dev} DATABASE_TABLE_NAME=${DATABASE_TABLE_NAME:-microapps-dev} npm -w @pwrdrvr/microapps-app-release run dev",
"lint": "eslint ./packages/ --ext .ts --ext .tsx",
"lint-and-fix": "eslint ./packages/ --ext .ts --ext .tsx --fix",
"postinstall": "patch-package --patch-dir ./patches/",
"start:app:next": "NODE_CONFIG_ENV=${NODE_CONFIG_ENV:-dev} DATABASE_TABLE_NAME=${DATABASE_TABLE_NAME:-microapps-dev} npm -w @pwrdrvr/microapps-app-release run start",
"install:node-prune": "curl -sf https://gobinaries.com/tj/node-prune | sh"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@pwrdrvr/microapps-publish": "0.4.0-alpha.5",
"@typescript-eslint/eslint-plugin": "^4.15.2",
"@typescript-eslint/parser": "^4.15.2",
"aws-cdk": "2.68.0",
"eslint": "^7.20.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.23.1",
"npm-force-resolutions": "^0.0.10",
"patch-package": "6.5.1",
"prettier": "^2.2.1",
"rimraf": "4.4.0",
"ts-node": "10.9.1",
"typescript": "4.9.5"
}
}