-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 746 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 746 Bytes
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
{
"name": "chrome-note-editor",
"version": "1.0.0",
"description": "A Chrome extension that mimics a code editor and saves content to local storage.",
"main": "index.js",
"scripts": {
"build": "webpack",
"start": "webpack serve --open"
},
"author": "",
"license": "ISC",
"dependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"devDependencies": {
"@types/react": "^17.0.21",
"@types/react-dom": "^17.0.9",
"copy-webpack-plugin": "^12.0.2",
"css-loader": "^6.11.0",
"html-webpack-plugin": "^5.3.2",
"style-loader": "^3.3.4",
"ts-loader": "^9.2.6",
"typescript": "^4.4.3",
"webpack": "^5.52.1",
"webpack-cli": "^4.8.0",
"webpack-dev-server": "^5.0.4"
}
}