-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 2.37 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
65
66
67
68
{
"name": "colored-pages",
"version": "1.0.3",
"description": "Customizable scss color themes with utility classes.",
"main": "dist/app.js",
"repository": {
"type": "git",
"url": "https://github.com/3tw/colored-pages.git"
},
"scripts": {
"test": "echo \"No test specified\"",
"clean": "rimraf lib dist demo app/src",
"check-js": "standardx",
"fix-js": "standardx --fix",
"dev": "node node_modules/cross-env/src/bin/cross-env.js NODE_ENV=development node_modules/webpack/bin/webpack.js --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"watch": "node node_modules/cross-env/src/bin/cross-env.js NODE_ENV=development node_modules/webpack/bin/webpack.js --watch --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"hot": "node node_modules/cross-env/src/bin/cross-env.js NODE_ENV=development node_modules/webpack-dev-server/bin/webpack-dev-server.js --inline --hot --config=node_modules/laravel-mix/setup/webpack.config.js",
"production": "node node_modules/cross-env/src/bin/cross-env.js NODE_ENV=production node_modules/webpack/bin/webpack.js --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"gh-pages": "git checkout gh-pages && git merge master && git subtree push --prefix demo origin gh-pages && git checkout master"
},
"files": [
"app/css",
"app/scss",
"app/js",
"app/src",
"dist"
],
"keywords": [
"scss",
"css",
"js",
"javascript",
"color",
"schemes",
"themes",
"color-theme",
"color-scheme"
],
"author": {
"name": "Teo Winkler",
"email": "[email protected]"
},
"license": "ISC",
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
"@babel/preset-env": "^7.12.1",
"cross-env": "^7.0.2",
"cssnano": "^4.1.10",
"eslint": "^7.11.0",
"eslint-config-standard": "^14.1.1",
"eslint-config-standard-jsx": "^8.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.21.4",
"eslint-plugin-standard": "^4.0.1",
"laravel-mix": "^5.0.7",
"rimraf": "^3.0.2",
"sass": "^1.27.0",
"sass-loader": "^8.0.2",
"webpack-livereload-plugin": "^2.3.0"
},
"standardx": {
"ignore": []
},
"dependencies": {}
}