-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
executable file
·55 lines (55 loc) · 1.8 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
{
"name": "project-structure",
"version": "1.0.0",
"description": "",
"main": "src/index.js",
"scripts": {
"start": "npm run build && npm run static-server",
"develop": "cross-env NODE_ENV=development webpack serve --config ./webpack/webpack.dev.js",
"deploy": "gh-pages -d build",
"build": "npm run clean && cross-env NODE_ENV=production URL_PATH='course-js.javascript.ru/' webpack --config ./webpack/webpack.prod.js",
"eslint": "eslint \"src/**/*.js\"",
"eslint:fix": "eslint --fix \"**/*.js\"",
"prettier": "prettier --check \"**/*.{js,css,html,md,json}\" --write",
"test:jest": "cross-env NODE_ICU_DATA=node_modules/full-icu jest",
"static-server": "static-server ./build",
"clean": "rimraf build"
},
"author": "",
"license": "ISC",
"engines": {
"node": ">=16.13.1",
"npm": ">=7.10.0"
},
"devDependencies": {
"@babel/core": "^7.8.4",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-env": "^7.8.4",
"@testing-library/jest-dom": "^5.1.1",
"babel-jest": "^25.1.0",
"babel-loader": "^8.0.6",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^10.2.0",
"cross-env": "^7.0.2",
"css-loader": "^3.4.2",
"dotenv": "^8.2.0",
"eslint": "^6.8.0",
"eslint-loader": "^3.0.3",
"file-loader": "^6.0.0",
"full-icu": "^1.3.1",
"gh-pages": "^3.1.0",
"html-webpack-plugin": "^5.5.0",
"jest": "^25.1.0",
"mini-css-extract-plugin": "^2.4.5",
"rimraf": "^3.0.2",
"static-server": "^2.2.1",
"style-loader": "^1.1.3",
"terser-webpack-plugin": "^2.3.5",
"webpack": "^5.65.0",
"webpack-bundle-analyzer": "^4.5.0",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.6.0",
"webpack-merge": "^5.8.0"
}
}