-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.57 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
{
"devDependencies": {
"@types/jest": "^27.0.1",
"@types/node": "^18.7.3",
"@webpack-cli/generators": "^2.5.0",
"eslint": "^8.13.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"http-server": "^14.1.1",
"jest": "^28.1.3",
"jest-canvas-mock": "^2.4.0",
"jest-environment-jsdom": "^28.1.3",
"jsdoc": "^3.6.10",
"ts-jest": "^28.0.7",
"ts-loader": "^9.3.1",
"ts-node-dev": "^2.0.0",
"typescript": "^4.7.4",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.9.3"
},
"scripts": {
"build:dev": "webpack --mode=development",
"build:prod": "webpack --mode=production --node-env=production",
"start:dev": "npm run build:dev && http-server .",
"watch": "webpack --watch",
"serve": "webpack serve",
"test": "jest",
"test:all": "jest --all && npm run coverage",
"test:coverage": "start ./coverage/lcov-report/index.html"
},
"name": "my-webpack-project",
"description": "My webpack project",
"version": "1.0.0",
"main": "src/index.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/TheIthorian/EasyQR.git"
},
"keywords": [
"QR",
"encode",
"typescript"
],
"author": "TheIthorian",
"license": "ISC",
"bugs": {
"url": "https://github.com/TheIthorian/EasyQR/issues"
},
"homepage": "https://github.com/TheIthorian/EasyQR#readme"
}