-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
41 lines (41 loc) · 1.24 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
{
"name": "flusio",
"license": "AGPL-3.0-or-later",
"repository": "github:flusio/flusio",
"scripts": {
"watch": "parcel watch --no-hmr --dist-dir public/dev_assets src/assets/*/application.* src/assets/stylesheets/design.css",
"build": "parcel build --dist-dir public/assets src/assets/*/application.* src/assets/stylesheets/design.css",
"lint-js": "eslint src/assets/javascripts/",
"lint-js-fix": "eslint --fix src/assets/javascripts/",
"lint-css": "stylelint src/assets/stylesheets/**/*.css",
"lint-css-fix": "stylelint --fix src/assets/stylesheets/**/*.css"
},
"targets": {
"default": {
"sourceMap": {
"inline": false,
"inlineSources": false,
"sourceRoot": ""
}
}
},
"alias": {
"js": "./src/assets/javascripts"
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"parcel": "^2.0.0-nightly.540",
"stylelint": "^13.3.3",
"stylelint-config-standard": "^20.0.0",
"stylelint-order": "^4.1.0"
},
"dependencies": {
"stimulus": "^1.1.1",
"turbolinks": "^5.2.0"
}
}