This repository was archived by the owner on Dec 20, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.31 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.31 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": "code4.ro",
"author": "Code for Romania",
"license": "MPL-2.0",
"private": true,
"scripts": {
"lint:css": "sass-lint --verbose",
"lint:js": "eslint src/js",
"dev": "cross-env NODE_ENV=development webpack --progress --hide-modules",
"watch": "npm run dev -- --watch",
"build": "cross-env NODE_ENV=production webpack --no-progress --hide-modules"
},
"browserslist": [
"last 2 versions",
"> 2%"
],
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/preset-env": "^7.12.1",
"autoprefixer": "^9.8.6",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.1",
"copy-webpack-plugin": "^6.3.0",
"cross-env": "^7.0.2",
"css-loader": "^4.3.0",
"cssnano": "^4.1.10",
"eslint": "^7.13.0",
"file-loader": "^6.2.0",
"friendly-errors-webpack-plugin": "^1.7.0",
"glob-all": "^3.2.1",
"json-loader": "^0.5.7",
"mini-css-extract-plugin": "^0.11.2",
"node-sass": "^4.14.1",
"optimize-css-assets-webpack-plugin": "^5.0.4",
"postcss-import": "^12.0.1",
"postcss-loader": "^4.0.4",
"purgecss-webpack-plugin": "^3.0.0",
"sass-lint": "^1.13.1",
"sass-loader": "^10.1.0",
"terser-webpack-plugin": "^4.2.2",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.12",
"webpack-manifest-plugin": "^2.2.0"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^5.15.1",
"bulma": "^0.9.1"
}
}