-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
129 lines (129 loc) · 4.13 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"title": "WordsUp",
"name": "wordsup",
"description": "Kelly Malone: Book Editor. Coach. Ghostwriter.",
"private": true,
"version": "0.0.1",
"scripts": {
"prepare": "husky install",
"postinstall": "[ ! -d .clutch ] && mkdir .clutch ; [ ! -f .clutch/config.json ] && cp clutch.config.json .clutch/config.json ; npm run build:hobo",
"start": "npx concurrently \"npm run server\" \"npm run watch:js\" \"npm run watch:sass\"",
"watch:js": "export NODE_ENV=sandbox ; npx webpack --env sandbox --config webpack.config.js --watch",
"watch:sass": "npx chokidar \"source/sass/**/*.scss\" -c \"npm run build:sass\"",
"server": "export NODE_ENV=sandbox ; npx pm2 --no-daemon --watch -a start ./ecosystem.config.js",
"server:stop": "npx pm2 stop 'all' --watch",
"prebuild": "npm run postinstall",
"build": "npm run build:sass ; npm run build:bundle ; npm run static:build ; npm run static:gzip",
"build:sass": "node-sass --output-style 'compressed' ./source/sass/screen.scss ./static/css/screen.css",
"build:bundle": "export NODE_ENV=production ; npx webpack --env production",
"build:hobo": "cd ./node_modules/properjs-hobo && npm install && npm run build -- 'is eq not one next prev attr last first index parent filter detach append remove trigger prepend closest children removeAttr toggleClass'",
"static:build": "export NODE_ENV=production ; export CLUTCH_CLEAN=0 ; node clutch.static.js",
"static:clean": "export NODE_ENV=production ; export CLUTCH_CLEAN=1 ; node clutch.static.js",
"static:gzip": "export NODE_ENV=production ; node clutch.gzip.js",
"static:serve": "npx serve static",
"lint": "npx eslint"
},
"devDependencies": {
"@babel/core": "^7.17.2",
"@babel/eslint-parser": "^7.17.0",
"@babel/plugin-transform-runtime": "^7.17.0",
"@babel/preset-env": "^7.16.11",
"babel-loader": "^8.2.5",
"body-parser": "^1.18.3",
"browser-sync": "^2.27.9",
"browser-sync-webpack-plugin": "^2.3.0",
"chokidar-cli": "^3.0.0",
"compression": "^1.7.2",
"concurrently": "^7.2.0",
"consolidate": "^0.15.1",
"cookie-parser": "^1.4.3",
"csurf": "^1.9.0",
"ejs": "^2.6.1",
"eslint": "^7.32.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-import": "^2.26.0",
"eslint-webpack-plugin": "^3.1.1",
"express": "^4.16.3",
"html-minifier": "^4.0.0",
"husky": "^8.0.1",
"lint-staged": "^12.4.1",
"node-gzip": "^1.1.2",
"node-sass": "^7.0.1",
"pm2": "^3.0.4",
"prismic-javascript": "^1.5.0-beta.2",
"properjs-lager": "^0.1.0",
"request": "^2.87.0",
"request-promise": "^4.2.2",
"serve": "^13.0.2",
"webpack": "^5.72.1",
"webpack-cli": "^4.9.2",
"xml2js": "^0.4.22"
},
"dependencies": {
"nodemailer": "^6.4.16",
"paramalama": "~0.2",
"prismic-dom": "^2.0.6",
"properjs-controller": "^0.3.1",
"properjs-hobo": "^0.3.26",
"properjs-imageloader": "^0.4.0",
"properjs-pagecontroller": "^0.5.0",
"properjs-resizecontroller": "^0.3.0",
"properjs-router": "^0.5.1",
"properjs-scrollcontroller": "^0.3.0",
"striptags": "^3.2.0"
},
"lint-staged": {
"source/js/**/*.js": "npm run lint"
},
"eslintConfig": {
"parser": "@babel/eslint-parser",
"settings": {},
"env": {
"browser": true,
"es2021": true,
"node": true
},
"plugins": [],
"extends": [
"eslint:recommended"
],
"parserOptions": {
"ecmaFeatures": {}
},
"ignorePatterns": [
"node_modules"
],
"rules": {}
},
"babel": {
"presets": [
"@babel/preset-env"
],
"plugins": [
"@babel/plugin-transform-runtime"
]
},
"repository": {
"type": "git",
"url": "git://github.com/kitajchuk/clutch.git"
},
"bugs": {
"url": "https://github.com/kitajchuk/clutch/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/kitajchuk/clutch/blob/master/LICENSE"
}
],
"keywords": [],
"license": "MIT",
"contributors": [
{
"name": "Brandon Lee Kitajchuk",
"email": "[email protected]",
"url": "https://kitajchuk.com"
}
],
"readmeFilename": "README.md"
}