-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.65 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.65 KB
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
{
"name": "algorithms",
"version": "1.0.0",
"description": "Algorithms and data structure practice",
"main": "index.js",
"scripts": {
"start": "npm-run-all --parallel dev:server lint:watch",
"dev:server": "webpack-dev-server --hot --inline",
"watch": "webpack -w -d",
"package-dev": "webpack --config=webpack.dev.config.js",
"package-prod": "webpack --config=webpack.prod.config.js",
"build-prod": "npm-run-all --parallel test package-prod",
"build-dev": "npm-run-all --parallel test package-dev",
"lint": "node_modules/.bin/esw webpack.config.* src --color",
"lint:watch": "npm run lint -- --watch",
"test": "jest ./src --watchAll"
},
"keywords": [
"es6"
],
"author": "Edita Ignot",
"license": "MIT",
"dependencies": {
"babel-loader": "^8.1.0",
"css-loader": "^3.6.0",
"style-loader": "^1.2.1"
},
"devDependencies": {
"@babel/cli": "^7.10.3",
"@babel/core": "^7.10.3",
"@babel/node": "^7.10.3",
"@babel/preset-env": "^7.10.3",
"@babel/preset-react": "^7.10.1",
"@babel/register": "^7.10.3",
"eslint": "^7.3.0",
"eslint-config-airbnb": "^17.1.1",
"eslint-loader": "^2.2.1",
"eslint-plugin-import": "^2.21.2",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.20.0",
"eslint-watch": "^7.0.0",
"jest": "^26.0.1",
"npm-run-all": "^4.1.5",
"uglifyjs-webpack-plugin": "^1.3.0",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
}
}