-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
99 lines (99 loc) · 2.67 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
{
"name": "simple-form-html2csv",
"version": "1.0.0",
"author": "Tobias Kuppens Groot",
"description": "Bootstrap signup form, store data on server as csv",
"license": "GPL-3.0",
"main": "index.js",
"scripts": {
"build:watch": "nodemon -w src --ext js,pug,php --exec npm run build",
"build": "webpack -p",
"serve": "webpack-dev-server",
"test:chromeHeadless": "selenium-side-runner -c \"browserName=chrome chromeOptions.args=[disable-infobars, headless]\" tests/signup.side",
"test:firefox": "exit 0",
"test": "npm run test:firefox && npm run test:chromeHeadless"
},
"repository": {
"type": "git",
"url": "https://github.com/tkgroot/simple-form-html2csv"
},
"bugs": {
"url": "https://github.com/tkgroot/simple-form-html2csv/issues"
},
"dependencies": {
"bootstrap": "^4.3.1",
"jquery": "^3.4.1",
"jquery-validation": "^1.19.0",
"popper.js": "^1.15.0"
},
"devDependencies": {
"@babel/core": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"autoprefixer": "^9.5.1",
"babel-loader": "^8.0.5",
"chromedriver": "^74.0.0",
"clean-css": "^4.2.1",
"clean-webpack-plugin": "^2.0.2",
"copy-webpack-plugin": "^5.0.3",
"css-loader": "^2.1.1",
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.2.0",
"eslint-plugin-prettier": "^3.0.1",
"favicons-webpack-plugin": "0.0.9",
"file-loader": "^3.0.1",
"geckodriver": "^1.16.2",
"html-webpack-plugin": "^3.2.0",
"husky": "^2.2.0",
"imagemin": "^6.1.0",
"imagemin-mozjpeg": "^8.0.0",
"imagemin-pngquant": "^7.0.0",
"imagemin-svgo": "^7.0.0",
"img-loader": "^3.0.1",
"lint-staged": "^8.1.6",
"mini-css-extract-plugin": "^0.6.0",
"node-sass": "^4.12.0",
"nodemon": "^1.19.0",
"optimize-css-assets-webpack-plugin": "^5.0.1",
"postcss-loader": "^3.0.0",
"postcss-normalize": "^7.0.1",
"prettier": "^1.17.0",
"pug": "^2.0.3",
"pug-loader": "^2.4.0",
"sass-lint": "^1.13.1",
"sass-loader": "^7.1.0",
"selenium-side-runner": "^3.6.1",
"style-loader": "^0.23.1",
"webpack": "^4.30.0",
"webpack-cli": "^3.3.2",
"webpack-dev-server": "^3.3.1",
"webpack-subresource-integrity": "^1.3.2"
},
"browserslist": [
"last 1 version",
"> 1%",
"maintained node versions",
"not dead"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,css,json,md}": [
"prettier --write",
"git add"
],
"*.{scss,sass}": "sass-lint"
},
"prettier": {
"printWidth": 88,
"semi": false,
"arrowParens": "always"
},
"eslintConfig": {
"extends": [
"plugin:prettier/recommended"
]
}
}