-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.43 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
49
50
{
"name": "react-material-pokemon-site",
"version": "1.0.0",
"description": "A basic ReactJS template site with a theme similar to Daemonite's Material, featuring a Pokémon list.",
"main": "src/index.js",
"scripts": {
"count-all-creatures": "node scripts/updateCreatureCount.js",
"new-creature": "node scripts/newcreature/add.js",
"start": "npm run count-all-creatures && react-scripts start",
"build": "npm run count-all-creatures && react-scripts build",
"test": "npm run count-all-creatures && react-scripts test",
"predeploy": "react-snap",
"eject": "react-scripts eject"
},
"dependencies": {
"bootstrap": "^5.3.2",
"bootstrap-material-design": "^4.1.3",
"jquery": "^3.7.1",
"mdb-ui-kit": "^7.1.0",
"popper.js": "^1.16.1",
"react": "^18.0.0",
"react-apexcharts": "^1.4.1",
"react-dom": "^18.0.0",
"react-helmet": "^6.1.0",
"react-router-dom": "^6.3.0",
"react-scripts": "^5.0.1",
"reactstrap": "^9.2.1"
},
"devDependencies": {
"@babel/core": "^7.17.0",
"@babel/preset-env": "^7.17.0",
"@babel/preset-react": "^7.17.0",
"babel-loader": "^8.2.3",
"react-snap": "^1.23.0"
},
"author": "Your Name",
"license": "ISC",
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}