-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 1.42 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
{
"name": "tag-list",
"version": "0.0.0",
"main": "src/index.ts",
"scripts": {
"lint": "standardx src/**/*.ts",
"fix": "standardx src/**/*.ts --fix",
"start": "NODE_ENV=development webpack serve --config webpack.config.js --open --open-page webpack-dev-server/",
"build": "NODE_ENV=production webpack --config webpack.config.js",
"tests": "jest"
},
"jest": {
"moduleFileExtensions": [
"js",
"ts"
]
},
"browserslist": "last 5 years",
"babel": {
"presets": [
"@babel/preset-env",
"@babel/preset-typescript"
],
"plugins": [
"@babel/plugin-transform-runtime"
]
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/plugin-transform-runtime": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@babel/preset-typescript": "^7.12.7",
"@types/ejs": "^3.0.5",
"@types/jest": "^26.0.20",
"@typescript-eslint/eslint-plugin": "^4.13.0",
"@typescript-eslint/parser": "^4.13.0",
"babel-loader": "^8.2.2",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^5.0.1",
"ejs": "^3.1.5",
"eslint": "^7.18.0",
"html-loader": "^1.3.2",
"html-webpack-plugin": "^4.5.1",
"jest": "^26.6.3",
"runtypes": "^5.0.1",
"standardx": "^7.0.0",
"style-loader": "^2.0.0",
"toml": "^3.0.0",
"typescript": "^4.1.3",
"webpack": "^5.15.0",
"webpack-cli": "^4.3.1",
"webpack-dev-server": "^3.11.2"
}
}