-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 3.81 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 3.81 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
94
95
{
"name": "web-components",
"version": "1.0.17",
"description": "",
"engines": {
"node": "12.13.0",
"npm": "6.12.0"
},
"scripts": {
"start": "npm run start:heroku",
"start:dev": "node_modules/.bin/cross-env NODE_ENV=development node server/default.js",
"start:prod": "node_modules/.bin/cross-env NODE_ENV=production node server/default.js",
"start:heroku": "node_modules/.bin/cross-env NODE_ENV=production node ./server/heroku.js",
"storybook": "node_modules/.bin/cross-env NODE_ENV=development GOAL=storybook start-storybook -p 4780 -c build-scripts/.storybook --https --ssl-cert sslcert/cert.pem --ssl-key sslcert/key.pem --no-open --no-manager-cache",
"build": "node_modules/.bin/cross-env NODE_ENV=production GOAL=storybook build-storybook -o build -c build-scripts/.storybook",
"build:lib": "npm run build:lib:prod",
"build:lib:dev": "node_modules/.bin/cross-env NODE_ENV=development GOAL=lib rollup --compact --config=build-scripts/rollup.config.js",
"build:lib:prod": "node_modules/.bin/cross-env NODE_ENV=production GOAL=lib rollup --compact --config=build-scripts/rollup.config.js",
"analyze:lib": "npm run build:lib:prod && npm run build:lib:bundle-stats && webpack-bundle-analyzer lib/stats/bundle.json lib/dist/",
"lint": "eslint --ext .js lib/src/ build-scripts/ server/ babel.config.js",
"lint:fix": "eslint --ext .js lib/src/ build-scripts/ server/ babel.config.js --fix",
"stylelint": "stylelint lib/src/**/*.{css,scss}",
"stylelint:fix": "stylelint lib/src/**/*.{css,scss} --fix",
"prepack": "echo \"Error: package should be packed from lib/ directory\" && exit 1",
"prepublishOnly": "echo \"Error: package should be published from lib/ directory\" && exit 1"
},
"sideEffects": false,
"browserslist": [
"last 10 versions, not < 1%, not dead"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ant478/web-components.git"
},
"author": "ant478",
"license": "ISC",
"bugs": {
"url": "https://github.com/ant478/web-components/issues"
},
"homepage": "https://github.com/ant478/web-components#readme",
"dependencies": {
"@babel/runtime": "7.18.9",
"compression": "1.7.4",
"core-js": "3.24.1",
"cross-env": "7.0.3",
"express": "4.18.1",
"heroku-ssl-redirect": "0.1.1",
"lodash": "4.17.21"
},
"devDependencies": {
"@babel/core": "7.18.10",
"@babel/eslint-parser": "7.18.9",
"@babel/plugin-transform-runtime": "7.18.10",
"@babel/preset-env": "7.18.10",
"@rollup/plugin-alias": "3.1.9",
"@rollup/plugin-babel": "5.3.1",
"@rollup/plugin-commonjs": "22.0.2",
"@rollup/plugin-node-resolve": "13.3.0",
"@storybook/addon-backgrounds": "6.5.10",
"@storybook/builder-webpack5": "6.5.10",
"@storybook/manager-webpack5": "6.5.10",
"@storybook/web-components": "6.5.10",
"@whitespace/storybook-addon-html": "5.0.0",
"babel-eslint": "10.1.0",
"babel-loader": "8.2.5",
"clean-webpack-plugin": "4.0.0",
"css-loader": "6.7.1",
"eslint": "8.21.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-plugin-import": "2.26.0",
"glob": "8.0.3",
"handlebars": "4.7.7",
"handlebars-loader": "1.7.2",
"lit-html": "2.3.0",
"node-sass": "7.0.1",
"postcss-loader": "6.2.1",
"postcss-preset-env": "7.7.2",
"rollup": "2.78.1",
"rollup-plugin-delete": "2.0.0",
"rollup-plugin-handlebars": "1.0.0",
"rollup-plugin-postcss": "4.0.2",
"rollup-plugin-scss": "3.0.0",
"rollup-plugin-terser": "7.0.2",
"sass": "1.54.4",
"sass-loader": "13.0.2",
"stylelint": "13.13.1",
"stylelint-config-sass-guidelines": "8.0.0",
"stylelint-config-standard": "22.0.0",
"terser-webpack-plugin": "5.3.3",
"to-string-loader": "1.2.0",
"webpack": "5.74.0",
"webpack-cli": "4.10.0",
"webpack-merge": "5.8.0"
}
}