-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.04 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.04 KB
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
{
"name": "emails-input",
"version": "1.0.0",
"description": "A solution for input emails",
"scripts": {
"lint": "eslint ./src/**/*.ts",
"test": "testcafe chrome ./e2e/**/*.ts",
"test:live": "testcafe --live chrome ./e2e/**/*.ts",
"develop": "webpack-dev-server --config webpack.dev.js",
"build": "webpack --mode production --config webpack.prod.js"
},
"engines": {
"node": ">=12"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^2.28.0",
"@typescript-eslint/parser": "^2.28.0",
"autoprefixer": "^9.7.6",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^3.5.2",
"eslint": "^6.8.0",
"eslint-plugin-compat": "^3.5.1",
"html-webpack-plugin": "^4.2.0",
"postcss-loader": "^3.0.0",
"style-loader": "^1.1.4",
"testcafe": "^1.8.4",
"ts-loader": "^7.0.0",
"typescript": "^3.8.3",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3",
"webpack-merge": "^4.2.2"
},
"dependencies": {}
}