-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
98 lines (98 loc) · 3.33 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
{
"name": "totaltimeline",
"description": "Total Timeline",
"author": "Ron Valstar",
"version": "1.0.28",
"repository": "https://xp-dev.com/git/totaltimeline",
"scripts": {
"start": "run-p build serve",
"build": "run-s clean build:unzip \"webpack -- --env development --watch\"",
"build:prod": "run-s clean build:unzip \"webpack -- --env production\" build:sitemap",
"build:unzip": "unzip src/style/icomoon.zip temp/icomoon",
"build:sitemap": "node task/sitemap",
"webpack": "npx webpack --config webpack.config.js",
"lint": "eslint src/js/**/*.js",
"lint:fix": "eslint src/js/**/*.js --fix",
"serve": "node ./task/serve dist 8385",
"json": "node ./task/wiki ./src/static/events.json",
"clean": "rimraf dist",
"_icomoon": "node task/icomoon",
"icons": "node task/img2css --source ./src/icon/ --target ./src/style/icons.less",
"version": "next-version package.json src/serviceWorker.js",
"prepare": "husky install"
},
"devDependencies": {
"@babel/core": "^7.13.10",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-proposal-decorators": "^7.13.5",
"@babel/plugin-proposal-do-expressions": "^7.12.13",
"@babel/plugin-proposal-export-default-from": "^7.12.13",
"@babel/plugin-proposal-export-namespace-from": "^7.12.13",
"@babel/plugin-proposal-function-bind": "^7.12.13",
"@babel/plugin-proposal-function-sent": "^7.12.13",
"@babel/plugin-proposal-json-strings": "^7.13.8",
"@babel/plugin-proposal-logical-assignment-operators": "^7.13.8",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.13.8",
"@babel/plugin-proposal-numeric-separator": "^7.12.13",
"@babel/plugin-proposal-optional-chaining": "^7.13.8",
"@babel/plugin-proposal-pipeline-operator": "^7.12.13",
"@babel/plugin-proposal-throw-expressions": "^7.12.13",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-syntax-import-meta": "^7.10.4",
"@babel/preset-env": "^7.13.10",
"@emmetio/expand-abbreviation": "^0.7.3",
"adm-zip": "^0.5.4",
"adm-zip-cli": "^1.0.0",
"autoprefixer": "^10.2.5",
"babel-eslint": "^9.0.0",
"babel-loader": "^8.3.0",
"babel-preset-babili": "0.0.12",
"babel-preset-minify": "^0.5.1",
"body-parser": "^1.20.1",
"chokidar-cli": "^2.1.0",
"commander": "^7.1.0",
"copy": "^0.3.2",
"copy-webpack-plugin": "^8.0.0",
"css-loader": "^5.1.2",
"cssnano": "^5.1.14",
"eslint": "^7.22.0",
"eslint-plugin-html": "^6.1.2",
"express": "^4.17.3",
"file-loader": "^6.2.0",
"husky": "^8.0.0",
"less": "^4.1.1",
"less-loader": "^8.0.0",
"less-plugin-glob": "^3.0.0",
"mkdirp": "^1.0.4",
"next-version": "^0.11.7",
"node-fetch": "^2.6.7",
"npm-run-all": "^4.1.5",
"open": "8.0.2",
"postcss-cli": "^8.3.1",
"raw-loader": "^4.0.2",
"rimraf": "^3.0.2",
"serve-static": "^1.14.1",
"shx": "^0.3.3",
"style-loader": "^2.0.0",
"url-loader": "^4.1.1",
"webpack": "^5.76.0",
"webpack-cli": "^4.5.0",
"webpack-watch-files-plugin": "^1.1.0",
"xml2js": "^0.5.0",
"xmlbuilder": "^15.1.1",
"yorkie": "^2.0.0"
},
"dependencies": {
"signals": "^1.0.0"
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 10"
]
}