-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
55 lines (55 loc) · 1.78 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
{
"name": "vueday.org",
"version": "1.0.0",
"description": "Vue Day website, a one-day conference in Alicante. Brought to you by @AlicanteFrontend",
"main": "src/index.njk",
"scripts": {
"dev": "NODE_ENV=development parcel src/index.njk --no-cache",
"prebuild": "rimraf dist/*",
"build": "NODE_ENV=production npm run validate && parcel build src/*.njk --no-cache",
"serve": "npm run build && npx serve dist",
"lint": "npm run lint:css",
"lint:js": "eslint src/**/*.js --fix",
"lint:css": "stylelint './src/**/*.+(css|scss)'",
"prettier": "prettier \"src/**/*.+(js|html|css|scss|json|md|yml|yaml|md)\"",
"format": "npm run prettier -- --write",
"validate": "npm run lint && npm run prettier -- --list-different",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AlicanteFrontend/vueday.org.git"
},
"keywords": [
"vue",
"vue day",
"alicante frontend",
"alicantefrontend",
"alicante"
],
"author": "Aarón García Hervás <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/AlicanteFrontend/vueday.org/issues"
},
"homepage": "https://vueday.org",
"devDependencies": {
"autoprefixer": "^9.7.0",
"eslint": "^6.5.1",
"eslint-config-prettier": "^6.4.0",
"eslint-plugin-prettier": "^3.1.1",
"husky": "^3.0.9",
"lint-staged": "^9.4.2",
"nunjucks": "^3.2.0",
"parcel-bundler": "^1.12.4",
"parcel-plugin-nunjucks": "^2.1.1",
"parcel-plugin-static-files-copy": "^2.2.1",
"prettier": "1.18.2",
"rimraf": "^3.0.0",
"sass": "^1.23.1",
"sass-mq": "^5.0.1",
"stylelint": "^11.1.1",
"stylelint-config-recommended-scss": "^4.0.0",
"stylelint-scss": "^3.12.0"
}
}