-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.31 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
{
"name": "salary-plus",
"version": "0.0.1",
"description": "App to record working sessions",
"main": "src/index.js",
"scripts": {
"watch:css": "postcss src/css/main.css --output dist/css/styles.css --watch",
"start": "run-p watch:css serve:light",
"build:css": "postcss src/css/main.css --output dist/css/styles.css --no-map",
"build": "env NODE_ENV=production npm run build:css",
"serve:express": "node server.js",
"serve:light": "light-server -c .lightserverrc",
"serve:servor": "servor src/public ./../index.html 8080"
},
"keywords": [],
"author": "Benedikt Gregor",
"license": "ISC",
"devDependencies": {
"eslint": "^6.7.2",
"eslint-config-airbnb": "^18.1.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-config-prettier": "^6.7.0",
"light-server": "^2.6.4",
"npm-run-all": "^4.1.5",
"postcss-cli": "^7.1.0",
"postcss-mixins": "^6.2.3",
"stylelint-config-prettier": "^8.0.1"
},
"dependencies": {
"cssnano": "^4.1.10",
"express": "^4.17.1",
"http-server-spa": "^1.3.0",
"postcss": "^7.0.27",
"postcss-import": "^12.0.1",
"postcss-preset-env": "^6.7.0",
"postcss-size": "^3.0.0",
"prettier-stylelint": "^0.4.2",
"servor": "^3.2.0",
"stylelint": "^13.2.1",
"stylelint-config-standard": "^20.0.0"
}
}