-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 2 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
{
"version": "0.5.0",
"name": "pmvc_react_admin",
"repository": {
"type": "git",
"url": "https://github.com/pmvc-theme/pmvc_react_admin"
},
"description": "pmvc admin theme",
"keywords": [
"react",
"reactjs"
],
"author": "Hill <hill@kimo.com>",
"license": "MIT",
"dependencies": {
"organism-react-navigation": "*",
"organism-react-popup": "*",
"pmvc_react_list": "*",
"react-atomic-molecule": "*",
"react-atomic-organism": "*",
"ricon": "*"
},
"devDependencies": {
"react": "^18.x",
"react-dom": "^18.x",
"react-virtualized": "*",
"reshow-app": "*"
},
"exports": {
"./list": {
"require": "./build/cjs/src/list.js",
"import": "./build/es/src/list.mjs"
},
".": {
"require": "./build/cjs/src/index.js",
"import": "./build/es/src/index.mjs"
}
},
"main": "./build/cjs/src/index.js",
"module": "./build/es/src/index.mjs",
"scripts": {
"update-compile-sh": "yo reshow:compile-sh",
"webpack": "webpack",
"start": "ws",
"format": "prettier-eslint --write 'src/**/*.js' 'ui/**/*.js*'",
"clean:webpack": "find ./assets -name '*.*' | xargs rm -rf && rm -rf workbox-*.js",
"clean": "find ./build -name '*.*' | xargs rm -rf",
"build:cjs": "BABEL_ENV=cjs babel src -d build/cjs/src --ignore /**/__tests__",
"build:es": "BABEL_ENV=es babel src -d build/es/src --out-file-extension .mjs",
"build:type": "npx -p typescript tsc src/index.js src/**/*.js src/ui/**/*.jsx --jsx react-jsx --declaration --allowJs --emitDeclarationOnly --skipLibCheck --declarationDir types",
"build": "npm run clean && npm run build:cjs && npm run build:es && npm run build:type",
"mochaFor": "mocha -r global-jsdom/register",
"mocha": "npm run mochaFor -- 'build/es/**/__tests__/*.mjs'",
"test": "npm run build && npm run mocha",
"prepublishOnly": "npm run test"
},
"types": "./types/index.d.ts",
"files": [
"types",
"build",
"laze.html",
"package.json",
"README.md"
]
}