-
Notifications
You must be signed in to change notification settings - Fork 33
/
package.json
110 lines (110 loc) · 3.21 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
{
"name": "package-build-stats",
"version": "7.3.14",
"author": "Shubham Kanodia <shubham.kanodia10@gmail.com>",
"repository": "https://github.com/pastelsky/package-build-stats",
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"license": "MIT",
"engines": {
"node": ">=8.9.x",
"npm": ">=4.x.x"
},
"files": [
"build",
"src"
],
"main": "build/index.js",
"scripts": {
"start": "ts-node --files index.js",
"dev": "DEBUG=bp* ts-node-dev --files index.js",
"dev:perf": "DEBUG=bp-telemetry* ts-node-dev --files index.js",
"build": "tsc && cp -r src/fixed build/fixed",
"test": "jest",
"test:ci": "yarn test --colors",
"prettier": "prettier --write '**/*.{html,js,ts,json,css,scss,jsx,flow,md,yml,yaml}'",
"prepublish": "rm -rf build && tsc && yarn prettier"
},
"prettier": {
"semi": false,
"singleQuote": true,
"arrowParens": "avoid"
},
"devDependencies": {
"@babel/preset-env": "^7.13.9",
"@babel/preset-typescript": "^7.13.0",
"@types/autoprefixer": "9",
"@types/babel__traverse": "^7.11.0",
"@types/enhanced-resolve": "^3.0.6",
"@types/lodash": "^4.14.168",
"@types/memory-fs": "^0.3.2",
"@types/mini-css-extract-plugin": "^1.2.2",
"@types/node": "^14.14.31",
"@types/rimraf": "^3.0.0",
"@types/shortid": "^0.0.29",
"@types/stats-lite": "^2.2.0",
"@types/terser-webpack-plugin": "4",
"@types/webpack": "^4.41.26",
"@types/write-file-webpack-plugin": "^4.5.0",
"dotenv": "^8.2.0",
"husky": "^4.3.0",
"jest": "^28.1.3",
"p-series": "^2.1.0",
"prettier": "^2.1.2",
"pretty-quick": "^3.1.0",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"typescript": "^4.2.3"
},
"dependencies": {
"@babel/core": "^7.13.8",
"@babel/parser": "^7.13.9",
"@babel/plugin-proposal-export-default-from": "^7.12.13",
"@babel/traverse": "^7.13.0",
"autoprefixer": "^9.7.6",
"babel-eslint": "^10.1.0",
"builtin-modules": "^3.1.0",
"css-loader": "^4.3.0",
"cssnano": "^4.1.10",
"csso-webpack-plugin": "^2.0.0-beta.1",
"debug": "^4.2.0",
"enhanced-resolve": "^5.7.0",
"esbuild": "^0.11.4",
"esbuild-loader": "^2.11.0",
"escape-string-regexp": "^2.0.0",
"fast-safe-stringify": "^2.0.7",
"file-loader": "^6.1.1",
"is-valid-npm-name": "^0.0.5",
"less": "^4.1.1",
"less-loader": "^7.3.0",
"lodash": "^4.17.21",
"memory-fs": "^0.5.0",
"mini-css-extract-plugin": "^1.3.9",
"mitt": "^2.1.0",
"node-fetch": "^2.6.1",
"np": "^7.4.0",
"optimize-css-assets-webpack-plugin": "^5.0.4",
"performance-now": "^2.1.0",
"pify": "^5.0.0",
"postcss-loader": "^3.0.0",
"rimraf": "^3.0.2",
"sanitize-filename": "^1.6.3",
"sass": "^1.52.3",
"sass-loader": "^8.0.2",
"server": "^1.0.32",
"shebang-loader": "^0.0.1",
"shortid": "^2.2.15",
"stats-lite": "^2.1.0",
"string-replace-loader": "^3.0.1",
"svelte": "^3.35.0",
"svelte-loader": "^2.13.6",
"terser": "^5.6.0",
"terser-webpack-plugin": "^4.2.3",
"vm2": "^3.9.7",
"vue-loader": "^15.9.3",
"vue-template-compiler": "^2.6.12",
"webpack": "^4.44.2",
"write-file-webpack-plugin": "^4.5.1"
}
}