-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
99 lines (99 loc) · 3.17 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"_moduleAliases": {
"~component": "app/components",
"~module": "app/modules",
"~root": ".",
"~route": "app/routes",
"~util": "app/utils",
"~view": "app/views"
},
"author": {
"name": "Paul Anthony Webb",
"url": "https://chronver.org"
},
"dependencies": {
"chewit": "^2019.7.23",
"fastify": "3.1.1",
"fastify-compress": "^2.0.1",
"fastify-helmet": "^3.0.2",
"fastify-static": "^2.6.0",
"marked": "^0.8.2"
},
"description": "Chronologic Versioning spec and website",
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/plugin-external-helpers": "7.8.3",
"@babel/plugin-proposal-class-properties": "7.8.3",
"@babel/plugin-proposal-decorators": "7.8.3",
"@babel/plugin-proposal-export-namespace-from": "7.8.3",
"@babel/plugin-proposal-function-sent": "7.8.3",
"@babel/plugin-proposal-json-strings": "7.8.3",
"@babel/plugin-proposal-numeric-separator": "7.8.3",
"@babel/plugin-proposal-throw-expressions": "7.8.3",
"@babel/plugin-syntax-dynamic-import": "7.8.3",
"@babel/plugin-syntax-import-meta": "7.8.3",
"@babel/polyfill": "^7.8.7",
"@babel/preset-env": "^7.9.5",
"@babel/register": "^7.9.0",
"@inc/eslint-config": "^2019.10.22",
"@inc/sasslint-config": "^2019.11.29",
"alphabetic-compare": "^1.1.4",
"chronver": "^2020.4.16",
"colorette": "^1.1.0",
"cwd": "^0.10.0",
"eslint": "^6.8.0",
"graceful-fs": "^4.2.3",
"html-minifier": "^4.0.0",
"husky": "^4.2.5",
"js-yaml": "^3.13.1",
"link-module-alias": "^1.2.0",
"nodemon": "^2.0.3",
"npm-run-all": "^4.1.5",
"pino-pretty": "^4.0.0",
"sass": "^1.26.3",
"sass-lint": "^1.13.1",
"snazzy": "^8.0.0",
"standardx": "^5.0.0",
"updates": "^10.2.7",
"viperhtml": "^2.17.1"
},
"engines": {
"node": ">=12.0.0"
},
"homepage": "https://chronver.org",
"husky": {
"hooks": {
"pre-commit": "npm run format && npm run test:sass && npm run increment && git add -A :/"
}
},
"main": "index.js",
"name": "@chronver/homepage",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/ChronVer/homepage.git"
},
"scripts": {
"css": "sass --load-path=node_modules --update app/sass:app/dist/css --style compressed",
"deploy": "vagrant push",
"format": "eslint . --fix --ignore-pattern '/app/dist/'",
"increment": "chronver --increment package",
"postinstall": "link-module-alias",
"preinstall": "command -v link-module-alias;link-module-alias clean || true",
"start": "export NODE_ENV=production;npm i;npm run css;node index.js",
"test": "run-s test:*",
"test:dependencies": "updates --update ./",
"test:lint": "standardx --verbose | snazzy",
"test:sass": "sass-lint --config ./node_modules/@inc/sasslint-config/config.json --verbose --no-exit",
"watch": "npm run css;run-p watch:*",
"watch:sass": "sass --load-path=node_modules --watch app/sass:app/dist/css --style compressed",
"watch:server": "export NODE_ENV=development;nodemon --ignore 'app/dist/'"
},
"standardx": {
"ignore": [
"app/dist"
]
},
"version": "2020.04.17"
}