-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.8 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
{
"name": "project1",
"version": "1.0.0",
"description": "Y.Practicum training",
"scripts": {
"start": "node app.ts",
"build": "webpack --mode development",
"build-prod": "webpack --mode production",
"dev": "webpack serve --mode development",
"check-types": "tsc --noEmit",
"lint": "eslint src --ext .ts --fix",
"test": "NODE_PATH=./src mocha"
},
"author": "Renat",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/plugin-transform-runtime": "^7.16.4",
"@babel/preset-env": "^7.16.0",
"@babel/preset-typescript": "^7.16.0",
"@babel/register": "^7.16.0",
"@sinonjs/fake-timers": "^8.1.0",
"@types/chai": "^4.2.22",
"@types/mocha": "^9.0.0",
"@types/sinonjs__fake-timers": "^8.1.1",
"@typescript-eslint/eslint-plugin": "^4.32.0",
"babel-plugin-add-module-exports": "^1.0.4",
"chai": "^4.3.4",
"css-loader": "^6.5.1",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-import-resolver-webpack": "^0.13.2",
"eslint-plugin-import": "^2.24.2",
"html-webpack-plugin": "^5.5.0",
"husky": "^7.0.4",
"ignore-styles": "^5.0.1",
"jsdom": "14.1.0",
"jsdom-global": "3.0.2",
"less": "^4.1.2",
"less-loader": "^10.2.0",
"mocha": "^9.1.3",
"sinon-chai": "^3.7.0",
"style-loader": "^3.3.1",
"ts-loader": "^9.2.6",
"typescript": "^4.4.3",
"webpack": "^5.64.4",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.6.0"
},
"dependencies": {
"@types/sinon": "^10.0.6",
"@types/uuid": "^8.3.1",
"express": "^4.17.1",
"handlebars": "^4.7.7",
"sinon": "^12.0.1",
"uuid": "^3.4.0"
},
"engines": {
"node": ">=12.0.0"
},
"targets": {
"global": {
"context": "browser",
"outputFormat": "global"
}
}
}