-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.29 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
{
"name": "nicolas-clicker",
"version": "0.0.1",
"author": "Leonardo Viva <[email protected]>",
"private": true,
"license": "MIT",
"engines": {
"node": ">=16.0.0",
"yarn": ">=1.22.0"
},
"scripts": {
"start": "webpack serve --config ./webpack.config.js",
"prettier": "prettier --write src",
"deploy": "./deploy.sh",
"build": "webpack build --mode development"
},
"devDependencies": {
"@tsconfig/node16": "^1.0.2",
"@types/node": "^17.0.27",
"@typescript-eslint/eslint-plugin": "^5.21.0",
"@typescript-eslint/parser": "^5.21.0",
"assert": "^2.0.0",
"buffer": "^6.0.3",
"css-loader": "^6.7.1",
"eslint": "^8.14.0",
"events": "^3.3.0",
"gh-pages": "^4.0.0",
"html-webpack-plugin": "^5.5.0",
"https-browserify": "^1.0.0",
"prettier": "^2.6.2",
"process": "^0.11.10",
"querystring-es3": "^0.2.1",
"raw-loader": "^4.0.2",
"sass": "^1.54.0",
"sass-loader": "^13.0.2",
"stream-browserify": "^3.0.0",
"stream-http": "^3.2.0",
"style-loader": "^3.3.1",
"ts-loader": "^9.3.1",
"ts-node": "^10.7.0",
"typescript": "^4.6.3",
"url": "^0.11.0",
"util": "^0.12.4",
"webpack": "^5.73.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.9.3"
},
"dependencies": {
"fastify": "^3.28.0",
"fastify-plugin": "^3.0.1",
"handlebars": "^4.7.7"
}
}