This repository has been archived by the owner on Sep 27, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpackage.json
64 lines (64 loc) · 2.04 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
56
57
58
59
60
61
62
63
64
{
"name": "@rails-mini-profiler/assets",
"version": "0.7.3",
"description": "Performance profiling for your Rails app, made simple",
"main": "dist/rails-mini-profiler.js",
"files": [
"dist/**/*"
],
"scripts": {
"test": "jest",
"lint": "eslint --ignore-path .gitignore .",
"lint:scss": "stylelint --ignore-path .gitignore **/*.scss",
"lint:commit": "commitlint --from main",
"watch": "browser-sync start --proxy localhost:3000 --files 'app/javascript/**/*,app/views/**/*' | rollup -c -w",
"build": "NODE_ENV=production rollup -c"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hschne/rails-mini-profiler.git"
},
"author": "Hans Schnedlitz",
"license": "MIT",
"bugs": {
"url": "https://github.com/hschne/rails-mini-profiler/issues"
},
"homepage": "https://github.com/hschne/rails-mini-profiler#readme",
"devDependencies": {
"@babel/core": "^7.15.0",
"@babel/eslint-parser": "^7.15.0",
"@babel/preset-env": "^7.15.0",
"@commitlint/cli": "^16.1.0",
"@commitlint/config-conventional": "^16.0.0",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^20.0.0",
"@rollup/plugin-eslint": "^8.0.1",
"@rollup/plugin-node-resolve": "^13.0.4",
"@rollup/plugin-replace": "^3.0.0",
"autoprefixer": "^10.3.1",
"browser-sync": "^3.0.2",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"less": "^4.1.1",
"node-sass": "^7.0.3",
"postcss": "^8.3.6",
"prettier": "2.3.2",
"rollup": "^2.56.1",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-postcss": "^4.0.0",
"rollup-plugin-scss": "^3.0.0",
"rollup-plugin-terser": "^7.0.2",
"sass": "^1.37.5",
"stylelint": "^13.13.1",
"stylelint-config-idiomatic-order": "^8.1.0",
"stylelint-config-standard": "^22.0.0",
"stylelint-order": "^4.1.0",
"stylelint-prettier": "^1.2.0",
"stylelint-scss": "^3.20.1"
},
"dependencies": {
"@hotwired/stimulus": "^3.0.0",
"tailwindcss-stimulus-components": "^3.0.0",
"tippy.js": "^6.3.1"
}
}