-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
72 lines (72 loc) · 2.4 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "AlgoGraph",
"version": "1.0.0",
"description": "",
"main": "index.js",
"directories": {
"doc": "docs"
},
"scripts": {
"webpack": "webpack",
"debug": "node --inspect ./node_modules/webpack/bin/webpack.js",
"dev": "npm run webpack -- --env mode=development --watch",
"prod": "npm run webpack -- --env mode=production",
"dev:debug": "npm run debug -- --env mode=development",
"prod:debug": "npm run debug -- --env mode=production",
"server": "webpack serve --env mode=development --hot",
"format": "prettier --ignore-path ./.gitignore --write \"./**/*.{html,json,js,ts,css}\"",
"format:check": "prettier --ignore-path ./.gitignore --check \"./**/*.{html,json,js,ts,css}\"",
"lint": "eslint --ignore-path ./.gitignore --fix \"./**/*.{js,ts}\"",
"lint:check": "eslint --ignore-path ./.gitignore --quiet \"./**/*.{js,ts}\"",
"test": "jest",
"start": "npm-run-all --parallel server lint format",
"localtunnel": "lt --port 8080",
"share": "npm-run-all --parallel start localtunnel",
"babel": "babel src -o build/bundle.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ahmedhem/AlgoGraph.git"
},
"keywords": [],
"author": "Ahmed Eid",
"license": "ISC",
"bugs": {
"url": "https://github.com/ahmedhem/AlgoGraph/issues"
},
"homepage": "https://github.com/ahmedhem/AlgoGraph#readme",
"devDependencies": {
"@babel/cli": "^7.14.8",
"@babel/core": "^7.14.8",
"@babel/preset-env": "^7.14.8",
"@babel/register": "^7.14.5",
"babel-core": "^6.26.3",
"babel-loader": "^8.2.2",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"compression-webpack-plugin": "^8.0.1",
"css-loader": "^6.2.0",
"eslint": "^7.31.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-watch": "^7.0.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.3.2",
"jest": "^27.0.6",
"mini-css-extract-plugin": "^2.1.0",
"prettier": "^2.3.2",
"style-loader": "^3.2.1",
"url-loader": "^4.1.1",
"webpack": "^5.46.0",
"webpack-cli": "^4.7.2",
"webpack-dev-server": "^3.11.2",
"webpack-merge": "^5.8.0"
},
"dependencies": {
"npm-run-all": "^4.1.5",
"queue-promise": "^2.2.1",
"regenerator-runtime": "^0.13.9"
}
}