-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 847 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 847 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
30
31
32
33
34
{
"name": "prismarine.js.org",
"version": "1.0.0",
"private": true,
"homepage": "https://prismarinejs.github.io/",
"dependencies": {
"bootstrap": "^5.0.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.23.1",
"react-scripts": "^5.0.1"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test:react": "react-scripts test --env=jsdom --watchAll=false",
"test": "npm run lint && npm run test:react",
"eject": "react-scripts eject",
"predeploy": "npm run build",
"deploy": "gh-pages -b master -d build",
"lint": "standard",
"fix": "standard --fix"
},
"devDependencies": {
"gh-pages": "^6.0.0",
"standard": "^17.1.0"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}