-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.25 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 2.25 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": "ceres-example",
"version": "1.0.0",
"private": true,
"description": "Ceres Example Template Repository",
"scripts": {
"clean": "rimraf dist",
"typecheck": "tsc --noEmit",
"build": "webpack --config webpack.config.js",
"build:clean": "npm run clean && webpack --config webpack.config.js",
"build:templates": "cross-env BUILD_TEMPLATES_ONLY=1 webpack --config webpack.config.js",
"build:template": "cross-env BUILD_TEMPLATES_ONLY=1 TEMPLATE=$npm_config_template webpack --config webpack.config.js",
"build:main": "cross-env BUILD_MAIN_ONLY=1 webpack --config webpack.config.js",
"build:widgets": "cross-env BUILD_WIDGETS_ONLY=1 webpack --config webpack.config.js",
"build:widget": "cross-env BUILD_WIDGETS_ONLY=1 WIDGET=$npm_config_widget webpack --config webpack.config.js",
"build:vendor": "cross-env BUILD_VENDOR_ONLY=1 webpack --config webpack.config.js",
"test": "jest",
"test:staged": "cross-env JEST_CI_RUN=1 jest --bail --ci --silent --coverage --passWithNoTests --forceExit --findRelatedTests"
},
"browserslist": [
"ie 11",
"last 2 versions"
],
"sideEffects": [
"*.css",
"src/widgets/**"
],
"devDependencies": {
"@babel/core": "^7.25.0",
"@babel/plugin-transform-runtime": "^7.25.0",
"@babel/preset-env": "^7.25.0",
"@babel/preset-typescript": "^7.25.0",
"@types/dompurify": "^3.0.5",
"@types/jest": "^29.5.12",
"@types/node": "^25.4.0",
"babel-jest": "^29.7.0",
"babel-loader": "^9.1.3",
"core-js": "^3.38.1",
"cross-env": "^7.0.3",
"css-loader": "^7.1.2",
"css-minimizer-webpack-plugin": "^7.0.0",
"fork-ts-checker-webpack-plugin": "^9.0.2",
"handlebars": "^4.7.8",
"handlebars-loader": "^1.7.3",
"html-webpack-plugin": "^5.6.4",
"jest": "^29.7.0",
"mini-css-extract-plugin": "^2.9.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.5.6",
"postcss-styled-syntax": "^0.7.1",
"postcss-syntax": "^0.36.2",
"prettier": "^2.8.8",
"rimraf": "^6.0.1",
"ts-node": "^10.9.2",
"typescript": "^5.9.3",
"webpack": "^5.94.0",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"@babel/runtime": "^7.25.0",
"@toast-ui/editor": "^3.2.2",
"dompurify": "^3.3.2",
"marked": "^17.0.4"
}
}