-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1.21 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
{
"name": "app",
"private": "true",
"dependencies": {
"@editorjs/attaches": "^1.3.0",
"@editorjs/delimiter": "^1.4.2",
"@editorjs/editorjs": "^2.30.6",
"@editorjs/header": "^2.8.7",
"@editorjs/image": "^2.9.3",
"@editorjs/link": "^2.6.2",
"@editorjs/nested-list": "^1.4.3",
"@editorjs/paragraph": "^2.11.6",
"@editorjs/quote": "^2.7.2",
"@editorjs/table": "^2.4.1",
"@editorjs/underline": "^1.1.0",
"@popperjs/core": "^2.11.8",
"autoprefixer": "^10.4.20",
"bootstrap": "^5.3.3",
"bootstrap-icons": "^1.11.3",
"editorjs-alert": "^1.1.4",
"nodemon": "^3.1.4",
"postcss": "^8.4.47",
"postcss-cli": "^11.0.0",
"sass": "^1.78.0"
},
"scripts": {
"build:css:compile": "sass ./app/assets/stylesheets/application.bootstrap.scss:./app/assets/builds/application.css --no-source-map --load-path=node_modules",
"build:css:prefix": "postcss ./app/assets/builds/application.css --use=autoprefixer --output=./app/assets/builds/application.css",
"build:css": "yarn build:css:compile && yarn build:css:prefix",
"watch:css": "nodemon --watch ./app/assets/stylesheets/ --ext scss --exec \"yarn build:css\""
},
"browserslist": [
"defaults"
]
}