This repository was archived by the owner on Dec 10, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
116 lines (116 loc) · 4.11 KB
/
package.json
File metadata and controls
116 lines (116 loc) · 4.11 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "@flex-development/jime-p001",
"description": "Storybook design system and Shopify storefront powered by Next.js for Morena's Kustomz.",
"keywords": [],
"homepage": "https://github.com/flex-development/JIME-P001",
"repository": "git://github.com/flex-development/JIME-P001.git",
"bugs": {
"url": "https://github.com/flex-development/JIME-P001/issues",
"email": "developers@flexdevelopment.llc"
},
"license": "UNLICENSED",
"author": {
"name": "Lexus Drumgold",
"email": "lex@flexdevlopment.llc",
"url": "https://flexdevelopment.llc"
},
"scripts": {
"rm:vercel": "rm -rf .vercel && mkdir .vercel",
"clean": "lerna clean --yes; rm -rf node_modules",
"clean:jest": "jest --clearCache",
"format": "prettier --write \"./\"",
"lint": "eslint . --ext js,ts,tsx --fix --cache",
"preinstall": "clear",
"predev:api": "yarn rm:vercel",
"dev:api": "cp ~/.vercel/kapi.json .vercel/project.json; vc dev -l 8080",
"dev:app": "lerna run dev --scope @flex-development/morenaskustomz",
"dev:ui": "lerna run dev --scope @flex-development/kustomzdesign",
"dev:store": "run-p dev:api dev:app",
"dev:store-ui": "run-p dev:api dev:ui",
"test": "bash ./scripts/jest.sh",
"test:api": "yarn test packages/api",
"test:api:integration": "yarn test packages/api/__tests__/integration",
"test:app": "yarn test packages/app",
"test:core": "yarn test packages/core",
"test:ui": "yarn test packages/system --json --outputFile=packages/system/__tests__/results.json",
"prepare": "lerna run prepare; lerna link"
},
"dependencies": {},
"devDependencies": {
"@babel/cli": "latest",
"@babel/core": "latest",
"@babel/eslint-parser": "latest",
"@babel/plugin-proposal-decorators": "latest",
"@babel/plugin-proposal-export-default-from": "latest",
"@babel/plugin-proposal-export-namespace-from": "latest",
"@babel/plugin-proposal-throw-expressions": "latest",
"@babel/plugin-syntax-dynamic-import": "latest",
"@babel/plugin-transform-runtime": "latest",
"@babel/preset-env": "latest",
"@babel/preset-react": "latest",
"@babel/preset-typescript": "latest",
"@commitlint/cli": "latest",
"@commitlint/config-conventional": "latest",
"@commitlint/config-lerna-scopes": "latest",
"@commitlint/format": "latest",
"@types/faker": "latest",
"@types/feathersjs__errors": "latest",
"@types/jest": "latest",
"@types/lodash": "latest",
"@types/node": "latest",
"@types/webpack": "latest",
"@typescript-eslint/eslint-plugin": "latest",
"@typescript-eslint/parser": "latest",
"@zerollup/ts-transform-paths": "latest",
"awesome-typescript-loader": "latest",
"babel-jest": "next",
"babel-plugin-module-resolver": "latest",
"babel-plugin-transform-define": "latest",
"debug": "latest",
"dotenv-cli": "latest",
"eslint": "latest",
"eslint-config-prettier": "latest",
"eslint-plugin-import": "latest",
"eslint-plugin-jest": "latest",
"eslint-plugin-jest-dom": "latest",
"eslint-plugin-jsdoc": "latest",
"eslint-plugin-jsx-a11y": "latest",
"eslint-plugin-node": "latest",
"eslint-plugin-prettier": "latest",
"eslint-plugin-react": "latest",
"eslint-plugin-react-hooks": "latest",
"eslint-plugin-testing-library": "latest",
"eslint-plugin-tree-shaking": "latest",
"faker": "latest",
"fs-extra": "latest",
"husky": "4.3.8",
"jest": "27.0.0-next.3",
"lerna": "latest",
"lint-staged": "latest",
"npm": "latest",
"npm-run-all": "latest",
"postcss": "latest",
"postcss-100vh-fix": "latest",
"postcss-flexbugs-fixes": "latest",
"postcss-preset-env": "latest",
"prettier": "latest",
"regenerator-runtime": "latest",
"replace-in-file": "latest",
"ts-jest": "next",
"ts-node": "latest",
"ttypescript": "latest",
"typescript": "4.3.0-dev.20210306",
"yarn": "latest"
},
"resolutions": {
"**/@storybook/core/**/webpack": "4.46.0",
"**/typescript": "4.3.0-dev.20210306"
},
"private": true,
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": []
}
}