-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 2.18 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
{
"private": true,
"description": "React Atomic documentation and examples",
"repository": {
"type": "git",
"url": "https://github.com/react-atomic/react-atomic-ui"
},
"keywords": [
"react",
"react-component",
"atomic-ui"
],
"author": "Hill <[email protected]>",
"license": "MIT",
"dependencies": {
"ajax-save": "*",
"fixed-data-table-2": "*",
"get-object-value": "*",
"get-scroll-info": "*",
"organism-react-ajax": "*",
"organism-react-animate": "*",
"organism-react-asciidoc": "*",
"organism-react-carousel": "*",
"organism-react-code": "*",
"organism-react-codeeditor": "*",
"organism-react-d3-axis-chart": "*",
"organism-react-d3-piechart": "*",
"organism-react-d3-uml": "*",
"organism-react-dropzone": "*",
"organism-react-facebook": "*",
"organism-react-grapesjs": "*",
"organism-react-html2canvas": "*",
"organism-react-i13n": "*",
"organism-react-navigation": "*",
"organism-react-parallax": "*",
"organism-react-popup": "*",
"organism-react-progress": "*",
"organism-react-qq-video": "*",
"organism-react-select-filter": "*",
"organism-react-spotlight": "*",
"organism-react-stockcharts": "*",
"organism-react-tag-highlight": "*",
"organism-react-tag-input": "*",
"organism-react-video": "*",
"pmvc_react_admin": "*",
"pmvc_react_list": "*",
"prettyjson": "1.2.1",
"react": "^18.x",
"react-dom": "^18.x",
"react-virtualized": "*",
"reshow-app": "*",
"reshow-url": "*",
"ricon": "*"
},
"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",
"clean": "find ./build -name '*.*' | xargs rm -rf",
"build:es": "BABEL_ENV=es babel src -d build/es/src --out-file-extension .mjs",
"build": "npm run clean && npm run build:es",
"mochaFor": "STRICT_MODE=on mocha -r global-jsdom/register",
"mocha": "npm run mochaFor -- 'build/es/**/__tests__/*.mjs'",
"test": "npm run build && npm run mocha",
"prepublishOnly": "exit 1;"
}
}