-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 994 Bytes
/
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
{
"name": "chrome-extension-react-typescript-boilerplate",
"version": "1.1.0",
"description": "A boilerplate project to quickly build a Chrome extension using TypeScript and React (built using webpack).",
"scripts": {
"build": "webpack --config webpack.prod.js",
"dev": "webpack --config webpack.dev.js",
"watch": "webpack -w --config webpack.dev.js"
},
"author": "Joe Martella",
"license": "MIT",
"devDependencies": {
"@svgr/webpack": "^5.4.0",
"@types/chrome": "^0.0.60",
"@types/p5": "^0.9.1",
"@types/react": "^16.9.32",
"@types/react-dom": "^16.9.6",
"css-loader": "^3.4.2",
"file-loader": "^6.1.0",
"node-sass": "^4.14.1",
"sass-loader": "^6.0.7",
"style-loader": "^0.20.3",
"ts-loader": "^4.0.1",
"typescript": "^3.8.0",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11",
"webpack-merge": "^4.2.2"
},
"dependencies": {
"p5": "^1.1.9",
"react": "^16.13.1",
"react-dom": "^16.13.1"
}
}