-
Notifications
You must be signed in to change notification settings - Fork 69
/
package.json
80 lines (80 loc) · 3.05 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
72
73
74
75
76
77
78
79
80
{
"name": "cxjs",
"version": "1.1.1",
"description": "Framework for enterprise JavaScript applications",
"scripts": {
"start": "cd docs && webpack-dev-server --config webpack.config.js --open",
"test": "mocha --config ./test/mocha.config.js",
"docs": "webpack-dev-server --config docs/webpack.config.js --open",
"build": "node packages/cx/build/index.js",
"build:docs": "webpack --config docs/webpack.config.js",
"build:docs:root": "webpack --config docs/webpack.config.js",
"measure:docs": "webpack-dev-server --config docs/webpack.config.js --open",
"litmus": "webpack-dev-server --config litmus/webpack.config.js --open",
"build:litmus": "webpack --config litmus/webpack.config.js",
"benchmark": "webpack --config benchmark/webpack.config.js --watch",
"build:benchmark": "webpack --config benchmark/webpack.config.js",
"build:theme:home": "webpack --config themes/home/webpack.config.js",
"build:theme:core": "webpack --config themes/core/webpack.config.js",
"build:theme:dark": "webpack --config themes/dark/webpack.config.js",
"build:theme:frost": "webpack --config themes/frost/webpack.config.js",
"build:theme:material": "webpack --config themes/material/webpack.config.js",
"build:theme:marine": "webpack --config themes/marine/webpack.config.js",
"build:theme:playground": "webpack --config themes/playground/webpack.config.js",
"gallery": "webpack-dev-server --config gallery/config/webpack.dev.js --open",
"build:gallery": "webpack --config gallery/config/webpack.prod.js",
"build:gallery:root": "webpack --config gallery/config/webpack.prod.js",
"test-cx-create-app": "cx create test-app-1",
"test-create-cx-app": "create-cx-app test-app-2"
},
"repository": {
"type": "git",
"url": "git@github.com:codaxy/cxjs.git"
},
"keywords": [
"UI"
],
"author": "Codaxy",
"license": "MIT",
"bugs": {
"url": "https://gitlab.com/codaxy/cxjs/issues"
},
"homepage": "https://cxjs.io",
"private": true,
"workspaces": [
"packages/*",
"docs",
"gallery",
"litmus",
"benchmark",
"fiddle"
],
"jest": {
"transform": {
"^.+\\.js$": "./test/jest.transform.js"
},
"transformIgnorePatterns": [
"node_modules/(?!cx|cx-react)"
]
},
"dependencies": {
"@types/react": "^18.3.14",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/plugin-transform-react-jsx": "^7.25.9",
"@babel/preset-env": "^7.26.0",
"@babel/register": "^7.25.9",
"babel-jest": "29.7.0",
"env-test": "^1.0.0",
"mocha": "^10.8.2",
"prettier": "^3.3.3",
"webpack-dev-server": "^5.1.0"
},
"resolutions": {
"@babel/helper-define-polyfill-provider": "^0.1.5"
},
"packageManager": "yarn@4.4.1+sha512.f825273d0689cc9ead3259c14998037662f1dcd06912637b21a450e8da7cfeb4b1965bbee73d16927baa1201054126bc385c6f43ff4aa705c8631d26e12460f1"
}