-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1.42 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
{
"name": "pinterest",
"version": "1.0.0",
"scripts": {
"build": "webpack",
"start": "PORT=3000 webpack serve",
"debug": "PORT=8081 DEBUG=true webpack serve",
"lint": "eslint src/",
"postinstall": "husky install"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^5.15.3",
"express": "^4.17.1",
"handlebars": "^4.7.7"
},
"devDependencies": {
"@babel/core": "^7.13.16",
"@babel/eslint-parser": "^7.13.14",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-proposal-decorators": "^7.13.15",
"@babel/plugin-proposal-private-methods": "^7.13.0",
"@babel/preset-env": "^7.14.1",
"@typescript-eslint/eslint-plugin": "^4.22.1",
"@typescript-eslint/parser": "^4.22.1",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.2",
"clean-webpack-plugin": "^4.0.0-alpha.0",
"core-js": "^3.11.1",
"css-loader": "^5.2.1",
"eslint": "^7.25.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-google": "^0.14.0",
"eslint-plugin-import": "^2.22.1",
"file-loader": "^6.2.0",
"globstar": "^1.0.0",
"handlebars-loader": "^1.7.1",
"html-webpack-plugin": "^5.3.1",
"husky": "^5.1.1",
"sass": "^1.32.8",
"sass-loader": "^11.0.1",
"style-loader": "^2.0.0",
"ts-loader": "^9.1.2",
"typescript": "^4.2.4",
"webpack": "^5.31.2",
"webpack-cli": "^4.6.0",
"webpack-dev-server": "^3.11.2"
}
}