This repository has been archived by the owner on Jul 19, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
106 lines (106 loc) · 4.06 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
{
"name": "frontend-template",
"version": "0.19.0",
"description": "Template of frontend",
"author": "kkoudev (Koichi Nagaoka)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/kkoudev/frontend-template.git"
},
"engines": {
"node": ">=10"
},
"scripts": {
"start": "run-s clean && run-p watch:* server",
"clean": "node ./node_scripts/tasks/clean.js",
"build:htdocs": "node ./node_scripts/tasks/htdocs.js",
"build:postcss": "node ./node_scripts/tasks/postcss.js",
"build:image": "node ./node_scripts/tasks/image.js",
"build:pug": "node ./node_scripts/tasks/pug.js",
"build:eslint": "node ./node_scripts/tasks/eslint.js",
"build:fusebox": "node ./node_scripts/tasks/fusebox.js",
"build": "run-p build:*",
"watch:htdocs": "cross-env NODE_WATCH=true nodemon --watch ./node_scripts --watch ./config ./node_scripts/tasks/htdocs.js",
"watch:postcss": "cross-env NODE_WATCH=true nodemon --watch ./node_scripts --watch ./config ./node_scripts/tasks/postcss.js",
"watch:image": "cross-env NODE_WATCH=true nodemon --watch ./node_scripts --watch ./config ./node_scripts/tasks/image.js",
"watch:pug": "cross-env NODE_WATCH=true nodemon --watch ./node_scripts --watch ./config ./node_scripts/tasks/pug.js",
"watch:eslint": "cross-env NODE_WATCH=true nodemon --watch ./node_scripts --watch ./config ./node_scripts/tasks/eslint.js",
"watch:fusebox": "cross-env NODE_WATCH=true nodemon --watch ./node_scripts --watch ./config ./node_scripts/tasks/fusebox.js",
"server:backend": "nodemon --watch ./app/server --watch ./config ./app/server/app.js",
"server:frontend": "nodemon --watch ./node_scripts --watch ./config ./node_scripts/tasks/server.js",
"server": "run-p server:*",
"patch:critical": "node ./node_scripts/tasks/critical.js",
"patch:sitemap": "node ./node_scripts/tasks/sitemap.js",
"patch": "run-p patch:*",
"dist:dev": "cross-env NODE_ENV=production COMPRESS_IMAGE=true run-s clean build patch",
"dist:prod": "cross-env NODE_ENV=production GTM_ENV=production COMPRESS_IMAGE=true run-s clean build patch"
},
"dependencies": {
"axios": "^0.19.0",
"cluster": "^0.7.7",
"express": "^4.17.1",
"fg-loadcss": "^2.1.0",
"fs-extra": "^8.1.0",
"lodash.assign": "^4.2.0",
"moment": "^2.24.0",
"morgan": "^1.9.1",
"picturefill": "^3.0.3",
"rxjs": "^6.5.3",
"sanitize.css": "^11.0.0",
"ts-polyfill": "^3.5.3",
"vanilla-lazyload": "^12.3.0",
"webfontloader": "^1.6.28"
},
"devDependencies": {
"@types/node": "^12.12.7",
"@types/picturefill": "^3.0.0",
"@types/webfontloader": "^1.6.29",
"@typescript-eslint/eslint-plugin": "^2.6.1",
"@typescript-eslint/parser": "^2.6.1",
"autoprefixer": "^9.7.1",
"babel-eslint": "^10.0.3",
"browser-sync": "^2.26.7",
"chalk": "^3.0.0",
"chokidar": "^3.3.0",
"compress-images": "^1.5.8",
"consolidate": "^0.15.1",
"critical": "^1.3.7",
"cross-env": "^6.0.3",
"css-mqpacker": "^7.0.0",
"cssnano": "^4.1.10",
"cssnano-preset-advanced": "^4.0.7",
"eslint": "^6.6.0",
"eslint-plugin-node": "^10.0.0",
"fuse-box": "^3.7.1",
"glob": "^7.1.6",
"jest": "^24.9.0",
"jest-haste-map": "^24.9.0",
"jest-resolve": "^24.9.0",
"node-notifier": "^6.0.0",
"nodemon": "^1.19.4",
"npm-run-all": "^4.1.5",
"postcss": "^7.0.21",
"postcss-assets": "^5.0.0",
"postcss-calc": "^7.0.1",
"postcss-easy-import": "^3.0.0",
"postcss-functions": "^3.0.0",
"postcss-hexrgba": "^2.0.0",
"postcss-image-set-polyfill": "^1.0.0",
"postcss-mixins": "^6.2.3",
"postcss-nested": "^4.2.1",
"postcss-reporter": "^6.0.1",
"postcss-selector-parser": "^6.0.2",
"postcss-simple-vars": "^5.0.2",
"postcss-sorting": "^5.0.1",
"postcss-sprites": "^4.2.1",
"postcss-webfont": "^3.0.0",
"pug": "^2.0.4",
"robots-generator": "^2.3.6",
"sitemap": "^5.1.0",
"stylelint": "^11.1.1",
"stylelint-config-sugarss-recommended": "^2.0.0",
"sugarss": "^2.0.0",
"typescript": "^3.7.2"
}
}