-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 2.6 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
{
"name": "experiments",
"filename": "index.js",
"version": "1.1.50",
"description": "",
"main": "dist/index.js",
"license": "MIT",
"author": "Ron Valstar",
"homepage": "http://ronvalstar.nl/",
"repository": {
"type": "git",
"url": ""
},
"scripts": {
"start": "run-p build build:watch serve",
"build": "run-s clean \"webpack\"",
"build:prod": "run-s clean \"webpack\"",
"_build": "run-s clean \"webpack -- --env.development\"",
"_build:prod": "run-s clean \"webpack -- --env.production\"",
"build:watch": "chokidar \"src/**/*.js\" -c \"npm run build\"",
"crypto-fix": "export NODE_OPTIONS=--openssl-legacy-provider",
"webpack": "npx webpack --config webpack.config.js",
"clean": "del-cli dist -f",
"serve": "node task/serve dist 8877",
"serve:temp": "node task/serve temp 8777",
"serve:html": "node task/serve src 8888",
"lint:fix": "eslint src/**/*.js --fix",
"version": "next-version package.json",
"version:minor": "npm run version -- --minor",
"version:major": "npm run version -- --major",
"build:test": "npx webpack --config webpack.test.config.js --env.development",
"build:test:watch": "npm run build:test & chokidar \"src/**/*.*\" -c \"npm run build:test\""
},
"dependencies": {
"@emmetio/expand-abbreviation": "^0.7.3",
"gsap": "^3.6.0",
"state-signals": "^1.0.2",
"voronoi": "^1.0.0"
},
"devDependencies": {
"@babel/core": "^7.24.0",
"@babel/eslint-parser": "^7.23.10",
"@babel/preset-env": "^7.24.0",
"babel-eslint": "^10.1.0",
"babel-loader": "^9.1.3",
"babel-preset-babili": "^0.1.4",
"babel-preset-minify": "^0.5.2",
"body-parser": "^1.20.1",
"chokidar-cli": "^3.0.0",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.7.2",
"css-properties-values": "^1.0.0",
"del-cli": "^5.0.0",
"eslint": "^8.40.0",
"express": "^4.18.2",
"file-loader": "^6.2.0",
"html-loader": "^5.0.0",
"less": "^4.1.3",
"less-loader": "^11.1.0",
"mkdirp": "^3.0.1",
"next-version": "^0.11.7",
"node-fetch": "^3.3.1",
"node-html-parser": "^6.1.5",
"npm-run-all": "^4.1.5",
"open": "^9.1.0",
"raw-loader": "^4.0.2",
"rimraf": "^5.0.0",
"sass-loader": "^13.2.2",
"serve-static": "^1.13.2",
"style-loader": "^3.3.2",
"url-loader": "^4.1.1",
"webpack": "^5.82.1",
"webpack-cli": "^5.1.1",
"yorkie": "^2.0.0"
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 10"
],
"gitHooks": {
"pre-commit": "npm run version"
}
}