This repository was archived by the owner on Jan 18, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.69 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.69 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
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
{
"name": "jc-widget",
"version": "0.1.0",
"description": "Just Comments widget",
"sideEffects": true,
"scripts": {
"test": "jest",
"build": "rm -rf dist/* && webpack-cli -p --config webpack.config.js --env.production",
"build-report": "rm -rf dist/* && webpack-cli -p --config webpack.config.js --env.production --locale=en --skipReports=false",
"build-dev-report": "rm -rf dist/* && webpack-cli --config webpack.config.js --env.development --locale=en --skipReports=false",
"watch": "webpack-cli --watch --config webpack.config.js --env.development --locale=en",
"start": "concurrently \"bls start\" \"npm run watch\"",
"prettier": "prettier --write 'src/**/*.js'",
"lint:js": "eslint src",
"lint:css": "stylelint src/style.css",
"lint:size": "npm run build && size-limit"
},
"size-limit": [
{
"webpack": false,
"path": "dist/core2.en.js"
},
{
"webpack": false,
"path": "dist/auth2*.js"
},
{
"webpack": false,
"path": "dist/w2*.js"
}
],
"keywords": [
"comments",
"ui",
"widget"
],
"author": "Oleksii Rudenko <alexei.rudenko@gmail.com>",
"license": "GPL-3.0",
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"devDependencies": {
"@babel/cli": "7.7.7",
"@babel/core": "7.7.7",
"@babel/plugin-proposal-class-properties": "7.7.4",
"@babel/plugin-syntax-object-rest-spread": "7.7.4",
"@babel/plugin-transform-react-jsx": "7.7.7",
"@babel/polyfill": "7.7.0",
"@babel/preset-env": "7.7.7",
"autoprefixer": "9.7.3",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "10.0.3",
"babel-jest": "24.9.0",
"babel-loader": "8.0.6",
"buildless": "0.0.10",
"buildless-ejs-transform": "0.0.3",
"classnames": "2.2.6",
"concurrently": "5.0.2",
"css-loader": "3.4.2",
"cssnano": "4.1.10",
"eslint": "6.8.0",
"husky": "4.0.6",
"identity-obj-proxy": "3.0.0",
"jest": "24.9.0",
"jest-transform-stub": "2.0.0",
"jsonwebtoken": "8.5.1",
"postcss-autoreset": "2.0.2",
"postcss-loader": "3.0.0",
"postcss-nested": "4.2.1",
"preact-render-spy": "1.3.0",
"preact-render-to-string": "5.1.3",
"prettier": "1.19.1",
"pretty-quick": "2.0.1",
"style-loader": "1.1.2",
"stylelint": "12.0.1",
"stylelint-config-recommended": "3.0.0",
"stylelint-webpack-plugin": "1.1.2",
"webpack": "4.41.5",
"webpack-bundle-analyzer": "3.6.0",
"webpack-cli": "3.3.10"
},
"dependencies": {
"js-base64": "2.5.1",
"jwt-decode": "2.2.0",
"md5": "2.2.1",
"preact": "10.2.1",
"redux-zero": "5.1.1",
"scrollparent": "2.0.1",
"timeago.js": "4.0.2"
}
}