-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
43 lines (43 loc) · 1.84 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
{
"name": "nimble_survey_web",
"private": true,
"scripts": {
"eslint": "eslint app/javascript --color",
"eslint:fix": "eslint app/javascript --color --fix",
"stylelint": "stylelint **/*.scss --color",
"stylelint:fix": "stylelint **/*.scss --color --fix",
"lint": "yarn eslint && yarn stylelint",
"lint:docs:yml": "eslint docs/openapi --ext .yml --color",
"lint:docs:openapi": "spectral lint docs/openapi/openapi.yml -F error",
"lint:docs:dev": "yarn lint:docs:yml && yarn lint:docs:openapi",
"lint:docs:public": "yarn build:docs && eslint public/openapi.yml --color --no-ignore && spectral lint public/openapi.yml -F error",
"build:js": "node app/javascript/build.js",
"build:sass": "sass app/assets/stylesheets/application.scss:app/assets/builds/application.css --no-source-map --load-path=node_modules --load-path=app/assets/stylesheets",
"build:postcss": "postcss app/assets/builds/application.css --dir app/assets/builds",
"build:css": "yarn build:sass && yarn build:postcss",
"build": "yarn build:js && yarn build:css",
"build:docs": "swagger-cli bundle docs/openapi/openapi.yml --outfile public/openapi.yml --type yaml"
},
"dependencies": {
"@apidevtools/swagger-cli": "4.0.4",
"@fullhuman/postcss-purgecss": "2.3.0",
"@nimblehq/eslint-config-nimble": "2.1.1",
"@nimblehq/stylelint-config-nimble": "1.0.2",
"@rails/actioncable": "^6.0.3-2",
"@rails/activestorage": "^6.0.3-2",
"@rails/ujs": "^6.0.3-2",
"@stoplight/spectral-cli": "6.8.0",
"core-js": "3",
"esbuild": "0.17.15",
"eslint-plugin-yml": "1.8.0",
"i18n-js": "3.7.1",
"postcss": "8.4.21",
"postcss-cli": "10.1.0",
"postcss-flexbugs-fixes": "5.0.2",
"postcss-preset-env": "8.3.0",
"sass": "1.61.0",
"stylelint": "15.4.0",
"tailwindcss": "1.6.0"
},
"version": "0.1.0"
}