-
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.49 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.49 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": "sorting_algorithm",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"dependencies": {
"classnames": "^2.2.6",
"compass-mixins": "^0.12.10",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-loadable": "^5.5.0"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"@babel/preset-react": "^7.9.4",
"autoprefixer": "^9.7.6",
"babel-loader": "^8.1.0",
"css-loader": "^3.5.1",
"cssnano": "^4.1.10",
"eslint": "^6.8.0",
"eslint-plugin-react": "^7.19.0",
"extract-css-chunks-webpack-plugin": "^4.7.4",
"html-loader": "^1.1.0",
"html-webpack-plugin": "^4.2.0",
"mathsass": "^0.11.0",
"node-sass": "^4.13.1",
"node-sass-utils": "^1.1.3",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"postcss-loader": "^3.0.0",
"resolve-url-loader": "^3.1.1",
"rimraf": "^3.0.2",
"sass-loader": "^8.0.2",
"terser-webpack-plugin": "^2.3.5",
"unsemantic": "^1.2.3",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3",
"webpack-merge": "^4.2.2"
},
"scripts": {
"clean": "rimraf build",
"build:dev": "NODE_ENV=development webpack --config webpack.config.js",
"build": "sudo yarn run clean && NODE_ENV=production webpack --config webpack.config.prod.js",
"start:dev": "yarn run build:dev && webpack-dev-server --content-base build/",
"lint": "eslint src/**/*.js",
"lint:fix": "yarn run lint --fix"
}
}