-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
34 lines (34 loc) · 1.16 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
{
"name": "image-stylization-sines",
"homepage": "https://piellardj.github.io/image-stylization-sines",
"description": "Tool to stylize images as sine waves.",
"author": "Jérémie PIELLARD <jeremie.piellard@gmail.com> (https://github.com/piellardj)",
"repository": "github:piellardj/image-stylization-sines",
"private": true,
"license": "ISC",
"scripts": {
"pre-commit": "npm run rebuild && npm run lint",
"build-page": "ts-node-script src/generate-page.ts",
"build": "npm run build-page && npm run webpack",
"clean": "shx rm -rf docs/* **/*generated.*",
"lint": "tslint -c src/config/tslint.json -p src/config/tsconfig.json",
"rebuild": "npm run clean && npm run build",
"webpack": "webpack --config src/config/webpack.config.js"
},
"engines": {
"node": ">=18.16.0"
},
"devDependencies": {
"@types/fs-extra": "^11.0.1",
"@types/node": "^20.3.0",
"fs-extra": "^11.1.1",
"shx": "^0.3.4",
"ts-loader": "^9.4.3",
"ts-node": "^10.9.1",
"tslint": "^6.1.3",
"typescript": "^5.1.3",
"webpack": "^5.86.0",
"webpack-cli": "^5.1.4",
"webpage-templates": "github:piellardj/webpage-templates"
}
}