-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
30 lines (30 loc) · 1.18 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
{
"name": "mainzed_website",
"version": "1.0.0",
"description": "",
"main": "app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build-less": "lessc -sm=on styles/laptop.less styles/laptop.css && lessc -sm=on styles/mainzed.less styles/mainzed.css && lessc -sm=on styles/medium.less styles/medium.css && lessc -sm=on styles/portrait.less styles/portrait.css && lessc -sm=on styles/small.less styles/small.css",
"build": "npm run build-less",
"watch-less": "catw -w 'styles/*.less' -c 'npm run build-less'",
"watch-server": "php -S localhost:8000 -t .",
"start": "concurrently -k --names \"PHP,Less\" --prefix-colors \"magenta.bold,blue.bold\" \"npm run watch-server\" \"npm run watch-less\""
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"catw": "^1.0.1",
"concurrently": "^3.5.0",
"eslint": "^4.6.1",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^5.1.1",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"less": "^2.7.2",
"stylelint": "^8.1.1",
"stylelint-config-recommended": "^1.0.0"
}
}