-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
132 lines (132 loc) · 4.4 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
{
"name": "@funboxteam/blueprinter",
"version": "6.1.0",
"description": "Replacement of Aglio library for rendering generated AST as HTML page.",
"repository": {
"type": "git",
"url": "https://github.com/funbox/blueprinter"
},
"author": "FunBox LLC <[email protected]> (https://funbox.ru)",
"license": "Apache-2.0",
"files": [
"/bin",
"/static"
],
"bin": {
"blueprinter": "./bin/index.js"
},
"scripts": {
"start": "npm run dev",
"build": "npm run make-stub && BABEL_ENV=production webpack --config ./config/webpack/build.config.js --mode=development",
"build-production": "NODE_ENV=production BABEL_ENV=production webpack --config ./config/webpack/build.production.config.js --mode=production",
"build-static": "NODE_ENV=production BABEL_ENV=production webpack --config ./config/webpack/doc.config.js --mode=production",
"dev": "npm-run-all --parallel watch-stub start-dev",
"start-dev": "webpack serve --progress --config ./config/webpack/dev.config.js --mode=development",
"make-stub": "node ./scripts/generate-stub.js",
"watch-stub": "node ./scripts/watch-stub.js",
"lint:scss": "stylelint \"src/**/*.scss\" --syntax scss --fix --config .stylelintrc --cache",
"lint:js": "eslint --cache -c .eslintrc.js --ext .jsx,.js src config",
"lint:test": "eslint -c tests/.eslintrc tests",
"lint": "npm run -s lint:scss && npm run -s lint:js && npm run -s lint:test",
"prebuild": "npm run lint",
"prepublishOnly": "if [ -z \"$CI\" ]; then lawyer; fi && npm run build-static",
"test": "npm run test-locales && jest --coverage",
"test-locales": "npm run extract && npm run compile -- --strict",
"extract": "lingui extract",
"compile": "lingui compile"
},
"dependencies": {
"@funboxteam/crafter": "6.0.0",
"@funboxteam/free-port-finder": "3.1.1",
"browser-sync": "2.28.1",
"commonmark": "0.30.0",
"react-hot-loader": "4.12.19",
"yargs": "15.4.1"
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "7.17.12",
"@babel/plugin-proposal-object-rest-spread": "7.17.12",
"@babel/plugin-transform-react-constant-elements": "7.17.12",
"@babel/preset-env": "7.17.12",
"@babel/preset-react": "7.17.12",
"@funboxteam/eslint-config": "7.3.0",
"@funboxteam/scss-imports-loader": "2.1.2",
"@funboxteam/scss-lint-config": "3.0.0",
"@funboxteam/scss-utils": "2.0.0",
"@funboxteam/scss-vars-loader": "2.2.0",
"@hot-loader/react-dom": "16.11.0",
"@lingui/cli": "3.14.0",
"@lingui/core": "3.14.0",
"@lingui/macro": "3.14.0",
"@lingui/react": "3.14.0",
"@svgr/webpack": "6.3.1",
"@types/react": "16.9.20",
"autoprefixer": "9.7.4",
"babel-loader": "8.0.6",
"babel-plugin-macros": "3.1.0",
"babel-plugin-transform-react-remove-prop-types": "0.4.24",
"base64-inline-loader": "2.0.1",
"bem-react-helper": "1.1.2",
"chokidar": "3.3.1",
"clean-webpack-plugin": "3.0.0",
"copy-webpack-plugin": "11.0.0",
"core-js": "3.6.4",
"css-loader": "3.4.2",
"csso-webpack-plugin": "2.0.0-beta.3",
"eslint": "7.32.0",
"fast-equals": "2.0.4",
"file-loader": "5.0.2",
"highlight.js": "11.6.0",
"html-inline-css-webpack-plugin": "1.11.1",
"html-inline-script-webpack-plugin": "3.1.0",
"html-react-parser": "0.10.1",
"html-webpack-plugin": "5.4.0",
"jest": "26.6.3",
"jest-junit": "13.2.0",
"make-plural": "7.1.0",
"mini-css-extract-plugin": "2.4.2",
"npm-run-all": "4.1.5",
"postcss-loader": "3.0.0",
"postcss-url": "8.0.0",
"prop-types": "15.7.2",
"re-resizable": "6.2.0",
"react": "16.12.0",
"react-aria-modal": "4.0.1",
"react-dom": "16.12.0",
"react-lowlight": "3.0.0",
"react-router-dom": "5.1.2",
"react-slide-toggle": "0.3.3",
"react-window": "1.8.5",
"resolve-url-loader": "4.0.0",
"sass": "1.25.0",
"sass-loader": "8.0.2",
"style-loader": "1.1.3",
"stylelint": "13.13.1",
"uniqid": "5.4.0",
"url-parse": "1.5.10",
"webpack": "5.76.0",
"webpack-cli": "4.10.0",
"webpack-dev-server": "4.9.0",
"webpack-merge": "5.8.0"
},
"jest": {
"testEnvironment": "node",
"roots": [
"tests"
],
"moduleDirectories": [
"node_modules",
"src"
],
"coverageReporters": [
"html",
"text",
"cobertura",
"lcov"
],
"reporters": [
"default",
"jest-junit"
]
}
}