-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.02 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
{
"name": "reactquickstart",
"version": "0.1.0",
"description": "React Quickstart",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "webpack serve --config webpack.dev.js",
"build-dev": "webpack --config webpack.dev.js",
"build-prod": "webpack --config webpack.prod.js",
"lint": "standard",
"fix": "standard --fix"
},
"author": "",
"license": "AGPL-3.0",
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/eslint-parser": "^7.25.9",
"@babel/preset-env": "^7.26.0",
"@babel/preset-react": "^7.16.7",
"css-loader": "^7.1.2",
"html-webpack-plugin": "^5.5.0",
"webpack": "^5.70.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.4"
},
"dependencies": {
"@primer/octicons-react": "^19.13.0",
"@primer/react": "^37.6.0",
"babel-loader": "^9.2.1",
"react": "^18.2.0",
"standard": "^17.1.0",
"styled-components": "^5.3.11"
},
"standard": {
"parser": "@babel/eslint-parser"
}
}