-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1.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
{
"name": "exdeck-themes",
"version": "0.0.17",
"description": "exdeck-frontend's default theme",
"main": "index.js",
"scripts": {
"build": "gulp build",
"cp": "gulp copy",
"watch": "gulp watch",
"lint": "stylelint 'src/**/*.{css,scss}'",
"fix": "stylelint --fix 'src/**/*.{css,scss}'",
"ver:patch": "npm version patch && yarn build && yarn cp",
"ver:minor": "npm version minor && yarn build && yarn cp",
"ver:major": "npm version major && yarn build && yarn cp"
},
"repository": "https://github.com/EXDeck/exdeck-theme.git",
"author": "hakunagi <[email protected]>",
"license": "MIT",
"private": true,
"devDependencies": {
"gulp": "^4.0.2",
"gulp-clean-css": "^4.3.0",
"gulp-dart-sass": "^1.0.2",
"gulp-header": "^2.0.9",
"gulp-rename": "^2.0.0",
"gulp-sass-glob-use-forward": "^0.1.3",
"postcss": "8",
"stylelint": "^14.6.1",
"stylelint-config-recess-order": "^3.0.0",
"stylelint-config-standard-scss": "^3.0.0"
},
"dependencies": {
"dotenv": "^16.0.0"
}
}