-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 3.01 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
81
82
83
84
85
86
87
88
89
90
{
"name": "@carbonorm/carbonreact",
"license": "MIT",
"version": "4.0.19",
"browser": "dist/index.umd.js",
"module": "dist/index.esm.js",
"main": "dist/index.cjs.js",
"types": "dist/index.d.ts",
"type": "module",
"dependencies": {
"@carbonorm/carbonnode": "^2.0.8",
"@fortawesome/fontawesome-svg-core": "^6.4.0",
"@fortawesome/free-solid-svg-icons": "^6.4.0",
"@fortawesome/react-fontawesome": "^0.2.0",
"@testing-library/react": "^14.0.0",
"ansi-colors": "^4.1.3",
"axios": "^1.4.0",
"bootstrap": "^5.3.1",
"classnames": "^2.3.2",
"heic2any": "^0.0.4",
"jest": "^29.5.0",
"jest-config": "^29.5.0",
"qs": "^6.11.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-loading-skeleton": "^3.3.1",
"react-outside-click-handler": "^1.3.0",
"react-router-dom": "^6.14.2",
"react-toastify": "^9.1.3",
"typed-css-modules": "^0.7.2",
"typed-scss-modules": "^7.1.2"
},
"devDependencies": {
"@carbonorm/postcss-modules": "^6.0.2",
"@carbonorm/rollup-plugin-postcss": "^3.0.0",
"@drop-in-gaming/barrelsby": "^0.0.2",
"@open-wc/building-rollup": "^3.0.1",
"@rollup/plugin-commonjs": "^11.0.1",
"@rollup/plugin-node-resolve": "^7.0.0",
"@rollup/plugin-typescript": "^11.1.2",
"@types/jest": "^29.5.4",
"@types/ms": "^0.7.31",
"@types/node": "^18.17.14",
"@types/react": "^18.0.32",
"@types/react-dom": "^18.0.11",
"@types/styled-components": "5.1.24",
"autoprefixer": "^10.4.14",
"bootstrap": "^5.3.1",
"classnames": "^2.3.2",
"css-loader": "^6.8.1",
"deepmerge": "^4.3.1",
"livereload": "^0.9.3",
"postcss": "^8.4.27",
"postcss-nested": "^6.0.1",
"postcss-scss": "^4.0.6",
"postcss-simple-vars": "^7.0.1",
"rimraf": "^5.0.1",
"rollup": "^3.26.3",
"rollup-plugin-dts": "^5.3.0",
"rollup-plugin-includepaths": "^0.2.4",
"rollup-plugin-postcss": "^4.0.2",
"rollup-watch": "^4.3.1",
"sass": "^1.64.1",
"scss": "^0.2.4",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
},
"bin": {
"compileValidSQL": "./compileValidSQL.cjs"
},
"scripts": {
"prepublishOnly": "npm run build",
"c6": "wget https://raw.githubusercontent.com/RichardTMiles/CarbonPHP/lts/view/C6.tsx -O src/variables/C6.tsx",
"build": "rm -rf ./dist/ ./src/api/rest/ && npm run build:css && npm run build:index && rollup -c && npm run build:compileValidSQL",
"dev": "rollup -c -w",
"test": "node test/test.js",
"pretest": "npm run build",
"build:index": "npx barrelsby --directory ./src --delete --exclude '(jestHoc|\\.test|\\.d).(js|tsx?)$' --exportDefault --verbose --mode top",
"build:css": "sass ./src:./src && typed-scss-modules 'src/**/*.?(s)css' --nameFormat all --exportType default src",
"build:compileValidSQL": "tsc compileValidSQL.tsx && mv compileValidSQL.js compileValidSQL.cjs"
},
"files": [
"compileValidSQL.tsx",
"compileValidSQL.cjs",
"generateRestBindings.tsx",
"generateRestBindings.cjs",
"dist",
"src"
]
}