-
Notifications
You must be signed in to change notification settings - Fork 71
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.91 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.91 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
{
"name": "cxjs",
"version": "1.1.1",
"description": "Framework for enterprise JavaScript applications",
"scripts": {
"test": "yarn workspaces foreach -A --include cx --include babel-plugin-transform-cx-jsx --include babel-plugin-transform-cx-imports run test",
"build": "yarn workspace cx-react run build && yarn workspace cx run build",
"litmus": "yarn workspace litmus run start",
"build:litmus": "webpack --config litmus/webpack.config.js",
"compile:themes": "yarn workspaces foreach -A --include 'cx-theme-*' run compile",
"build:themes": "yarn workspaces foreach -A --include 'cx-theme-*' run build"
},
"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/*",
"homedocs",
"legacy/docs",
"legacy/gallery",
"litmus",
"legacy/benchmark",
"legacy/fiddle",
"legacy/ts-minimal"
],
"jest": {
"transform": {
"^.+\\.js$": "./test/jest.transform.js"
},
"transformIgnorePatterns": [
"node_modules/(?!cx|cx-react)"
]
},
"dependencies": {
"@rollup/plugin-node-resolve": "^16.0.3",
"@types/react": "^19.2.7",
"react": "^19.2.3",
"react-dom": "^19.2.3"
},
"devDependencies": {
"@babel/core": "^7.28.5",
"@babel/plugin-transform-react-jsx": "^7.27.1",
"@babel/preset-env": "^7.28.5",
"@babel/register": "^7.28.3",
"env-test": "^1.0.0",
"prettier": "^3.3.3",
"webpack-dev-server": "^5.2.2"
},
"resolutions": {
"@babel/helper-define-polyfill-provider": "^0.1.5",
"chalk": "^4.1.2"
},
"packageManager": "yarn@4.4.1+sha512.f825273d0689cc9ead3259c14998037662f1dcd06912637b21a450e8da7cfeb4b1965bbee73d16927baa1201054126bc385c6f43ff4aa705c8631d26e12460f1"
}