-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.36 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
{
"name": "notes-app",
"version": "1.0.0",
"description": "Notes app is a service for creating, editing and storing notes in your browser",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack --mode=production --node-env=production",
"build:dev": "webpack --mode=development",
"build:prod": "webpack --mode=production --node-env=production",
"watch": "webpack --watch",
"serve": "webpack serve"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Dmitriy-SP/notes-app.git"
},
"homepage": "https://github.com/Dmitriy-SP/notes-app#readme",
"author": "LyubimovD",
"license": "ISC",
"devDependencies": {
"@webpack-cli/generators": "^3.0.1",
"css-loader": "^6.7.3",
"esbuild-loader": "^3.0.1",
"eslint": "^8.35.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.27.5",
"mini-css-extract-plugin": "^2.7.2",
"postcss-loader": "^7.0.2",
"sass": "^1.58.3",
"sass-loader": "^13.2.0",
"style-loader": "^3.3.1",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.11.1"
},
"dependencies": {
"bootstrap": "^5.2.3",
"html-webpack-plugin": "^5.5.0",
"localforage": "^1.10.0",
"on-change": "^4.0.2",
"tinymce": "^6.3.2",
"workbox-webpack-plugin": "^6.5.4"
}
}