-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.35 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
{
"name": "solverr",
"version": "0.1.0",
"description": "",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"clean": "rimraf dist dist-dev",
"dev": "parcel index.html --https --port 5500 --hmr-port 40398 --open --out-dir dist-dev",
"build": "rimraf dist && parcel build index.html --no-source-maps",
"predeploy": "npm run build -- --public-url ./ && cp 404.html dist/404.html",
"deploy": "gh-pages -d dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/remziatay/solverr.git"
},
"author": "Remzi Atay",
"license": "ISC",
"bugs": {
"url": "https://github.com/remziatay/solverr/issues"
},
"homepage": "https://remziatay.github.io/solverr",
"devDependencies": {
"babel-eslint": "^10.1.0",
"eslint": "^7.9.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-standard": "^4.0.1",
"gh-pages": "^3.1.0",
"parcel-bundler": "^1.12.4",
"rimraf": "^3.0.2"
},
"dependencies": {
"jsx-native-events": "^1.0.2",
"peerjs": "^1.3.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-router-dom": "^5.2.0",
"vanilla-colorful": "^0.3.0"
}
}