-
Notifications
You must be signed in to change notification settings - Fork 396
/
Copy pathpackage.json
59 lines (59 loc) · 1.68 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
{
"name": "loftschool-example",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"codestyle": "eslint projects",
"codestyle:fix": "eslint projects --fix",
"travis": "npm run codestyle && npm test",
"build": "webpack --progress",
"build:prod": "NODE_ENV=production webpack --progress",
"watch": "webpack serve",
"start": "npm run watch",
"test": "jest",
"test:coverage": "jest --coverage",
"prepare": "husky install"
},
"author": "",
"license": "MIT",
"lint-staged": {
"*.[jt]s": [
"eslint --cache --fix"
]
},
"devDependencies": {
"@babel/core": "^7.21.0",
"@babel/eslint-parser": "^7.19.1",
"@babel/plugin-transform-runtime": "^7.21.0",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.21.0",
"@babel/runtime": "^7.21.0",
"@typescript-eslint/eslint-plugin": "^5.49.0",
"@typescript-eslint/parser": "^5.49.0",
"@types/jest": "^29.4.0",
"@types/node": "^16.18.13",
"babel-jest": "^29.4.3",
"babel-loader": "^9.1.2",
"css-loader": "^6.7.3",
"eslint": "^8.31.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-prettier": "^4.2.1",
"handlebars": "^4.7.7",
"handlebars-loader": "^1.7.3",
"html-loader": "^4.2.0",
"html-webpack-plugin": "^5.5.0",
"husky": "^8.0.3",
"jest": "^29.4.3",
"jest-environment-jsdom": "^29.4.3",
"lint-staged": "^13.1.0",
"mini-css-extract-plugin": "^2.7.2",
"node-fetch-polyfill": "^2.0.6",
"prettier": "^2.8.4",
"raw-loader": "^4.0.2",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.11.1"
}
}