-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
executable file
·110 lines (110 loc) · 3.15 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": "darvin-boilerplate",
"version": "3.0.1",
"description": "pure html webpack boilerplate for modern browsers with loader ecosystem, preview for shipping and cli scaffolding.",
"keywords": [
"webpack",
"typescript",
"customprops",
"html-webpack",
"webgl",
"static site generator",
"html5 boilerplate",
"vue",
"react",
"unic ag",
"tapedwn gmbh"
],
"engines": {
"node": "14.17.5"
},
"bin": {
"darvin-cli": "./.cli/darvin-cli"
},
"repository": {
"type": "git",
"url": "github.com/unic"
},
"scripts": {
"start": "npm install; npm link; darvin-cli init",
"lint": "lint-staged",
"lint-prev-script": "eslint \"preview/**/*.js\" --fix",
"lint-prev-style": "stylelint \"preview/**/*.scss\" --fix",
"lint-script": "eslint -c .eslintrc.js --ext ts,js,vue \"src/**/*.{js,ts,vue}\" --fix",
"lint-style": "stylelint \"src/**/*.{scss,vue}\" --fix",
"tslint": "tslint --project tsconfig.json src/**/**.ts"
},
"devDependencies": {
"@babel/core": "^7.15.5",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/plugin-syntax-dynamic-import": "7.8.3",
"@babel/preset-env": "^7.15.6",
"@babel/preset-react": "^7.14.5",
"@babel/runtime": "^7.15.4",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/eslint-plugin-tslint": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"@unic/composite-observer": "0.0.10",
"assert": "^2.0.0",
"babel-eslint": "10.1.0",
"babel-loader": "^8.2.2",
"babel-plugin-transform-eval": "^6.22.0",
"chalk": "^4.1.2",
"cross-env": "^7.0.3",
"deepmerge": "^4.2.2",
"end-of-stream": "^1.4.4",
"eslint": "7.32.0",
"eslint-import-resolver-webpack": "0.13.1",
"eslint-loader": "^4.0.2",
"eslint-plugin-import": "2.24.2",
"fs-extra": "^10.0.0",
"glob": "7.2.0",
"graceful-fs": "^4.2.8",
"husky": "7.0.2",
"inquirer": "^8.2.0",
"lint-staged": "11.2.0",
"lowdb": "1.0.0",
"mkdirp": "^1.0.4",
"noop2": "^2.0.0",
"normalize.css": "^8.0.1",
"pump": "^3.0.0",
"readdirp": "^3.6.0",
"replace-in-file": "^6.2.0",
"run-parallel": "^1.2.0",
"sort-package-json": "^1.52.0",
"speed-measure-webpack-plugin": "^1.5.0",
"split2": "^3.2.2",
"stylelint": "^13.13.1",
"stylelint-scss": "^3.21.0",
"stylelint-webpack-plugin": "^3.0.1",
"terminal-table": "0.0.12",
"through2": "^4.0.2",
"ts-loader": "^9.2.6",
"ts-node": "^10.2.1",
"tslint": "^6.1.3",
"tslint-loader": "3.5.4",
"typescript": "^4.4.3",
"webpack": "^5.57.1",
"webpack-bundle-analyzer": "4.4.2",
"webpack-cli": "^4.8.0",
"webpack-dev-server": "^4.3.1",
"webpack-merge": "^5.8.0",
"webpack-messages": "^2.0.4",
"webpack-modernizr-loader": "^5.0.0",
"webpack-shell-plugin-next": "^2.2.2",
"whatwg-fetch": "^3.6.2"
},
"dependencies": {
"core-js": "^3.18.2",
"fastdom": "^1.0.10",
"intersection-observer": "^0.12.0",
"mdn-polyfills": "^5.20.0",
"picturefill": "^3.0.3",
"svg4everybody": "^2.1.9"
},
"browserslist": [
"> 1% in CH",
"ie >= 11",
"not dead"
]
}