-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.89 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
{
"name": "vivaldi",
"version": "1.0.1",
"description": "Validation plugin Vivaldi - sn.dk - Sjællandske Medier",
"main": "src/index.js",
"scripts": {
"start": "webpack-dev-server --config __tooling__/webpack/webpack.dev.js --hot --progress --watch",
"build": "webpack --config __tooling__/webpack/webpack.prod.js --progress",
"release:major": "npm version major --no-git-tag-version",
"release:minor": "npm version minor --no-git-tag-version",
"release:hotfix": "npm version patch --no-git-tag-version",
"postversion": "git add package.json package-lock.json && git commit -m \"Bump version to v$npm_package_version\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/zenjoe/vivaldi.git"
},
"contributors": [
{
"name": "Joe Kniesek",
"email": "[email protected]"
}
],
"license": "ISC",
"bugs": {
"url": "https://github.com/zenjoe/vivaldi/issues"
},
"homepage": "https://github.com/zenjoe/vivaldi#readme",
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-object-rest-spread": "^7.4.4",
"@babel/plugin-transform-async-to-generator": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"babel-loader": "^8.0.6",
"css-loader": "^3.0.0",
"eslint": "^6.0.1",
"eslint-loader": "^2.1.2",
"express": "^4.17.1",
"mini-css-extract-plugin": "^0.7.0",
"node-sass": "^4.13.1",
"optimize-css-assets-webpack-plugin": "^5.0.1",
"sass-loader": "^7.1.0",
"string-replace-loader": "^2.2.0",
"style-loader": "^0.23.1",
"terser-webpack-plugin": "^1.3.0",
"webpack": "^4.42.0",
"webpack-cli": "^3.3.5",
"webpack-dev-server": "^3.10.3",
"webpack-merge": "^4.2.1"
}
}