forked from digitalocean/nginxconfig.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.66 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
{
"name": "nginxconfig.io",
"version": "1.0.0",
"homepage": "https://nginxconfig.io",
"description": "⚙️ NGINX config generator generator on steroids 💉",
"repository": {
"type": "git",
"url": "git+https://github.com/valentinxxx/nginxconfig.io.git"
},
"bugs": {
"url": "https://github.com/valentinxxx/nginxconfig.io/issues"
},
"keywords": [
"nginx",
"config",
"configuration",
"generator"
],
"author": "Bálint Szekeres <[email protected]> (https://balint.szekeres.me)",
"license": "MIT",
"dependencies": {
"angular-tooltips": "^1.2.2",
"autoprefixer": "^8.6.4",
"bootstrap": "^4.1.1",
"eslint": "^5.9.0",
"highlight.js": "^9.12.0",
"node-sass": "^4.11.0",
"postcss-cli": "^5.0.1"
},
"devDependencies": {
"cypress": "^3.1.2",
"http-server": "^0.11.1",
"start-server-and-test": "^1.5.0"
},
"scripts": {
"start": "npm run build && http-server",
"build": "npm run build:scss",
"build:prod": "npm run build:scss:prod && npm run autoprefixer",
"build:scss": "node-sass --source-map=public/assets/css/app.min.css.map resources/scss/app.scss public/assets/css/app.min.css",
"build:scss:prod": "node-sass --output-style=compressed resources/scss/app.scss public/assets/css/app.min.css",
"autoprefixer": "postcss public/assets/css/app.min.css --use autoprefixer --no-map --replace --verbose",
"lint": "eslint public/assets/js/app.js",
"lint:fix": "npm run lint -- --fix",
"test": "npm run lint && start-server-and-test start http://localhost:8080 cypress:run",
"test:debug": "npm run lint && start-server-and-test start http://localhost:8080 cypress:open",
"cypress:run": "cypress run",
"cypress:open": "cypress open"
}
}