-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.35 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.35 KB
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
{
"name": "app-connections",
"version": "1.0.0",
"scripts": {
"dev": "npm install && concurrently \"webflow extension serve\" \"npm run watch-webpack\"",
"build": "npm run build-webpack && webflow extension bundle",
"watch-webpack": "webpack --config webpack.config.mjs --mode development --watch",
"build-webpack": "webpack --config webpack.config.mjs --mode production",
"lint": "eslint . --ext .ts,.tsx",
"prettier": "prettier --write .",
"prepare": "husky"
},
"lint-staged": {
"**/*": "npm run prettier"
},
"devDependencies": {
"@babel/preset-env": "^7.23.2",
"@babel/preset-react": "^7.22.15",
"@types/react": "^18.2.79",
"@types/react-dom": "^18.2.25",
"@typescript-eslint/eslint-plugin": "^7.7.0",
"@typescript-eslint/parser": "^7.7.0",
"@webflow/designer-extension-typings": "^2.0.5",
"babel-loader": "^9.1.3",
"concurrently": "^8.2.2",
"eslint": "^8.5.7",
"eslint-plugin-promise": "^6.1.1",
"husky": "^9.1.7",
"lint-staged": "^15.2.10",
"prettier": "3.3.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"ts-loader": "^9.5.1",
"typescript": "^5.4.5",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"react-dom": "^18.2.0"
},
"babel": {
"presets": [
"@babel/preset-env",
"@babel/preset-react"
]
}
}