-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
76 lines (76 loc) · 2.12 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
{
"name": "mondrian-art",
"version": "0.1.0",
"description": "Generate Piet Mondrian Art",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"start-app": "nodemon ./src/app.ts",
"prepublish": "tsc",
"prebuild": "shx rm -rf dist",
"build": "concurrently 'yarn:build:*'",
"build:base": "rollup -c",
"lint": "tslint -c tslint.json 'src/**/**.ts'"
},
"author": "Andrey Andronov",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.13.14",
"@babel/plugin-external-helpers": "^7.12.13",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-transform-typescript": "^7.13.0",
"@babel/preset-env": "^7.13.10",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-node-resolve": "^11.2.1",
"@rollup/plugin-typescript": "^8.2.1",
"@types/jest": "^26.0.22",
"@typescript-eslint/eslint-plugin": "^4.20.0",
"@typescript-eslint/parser": "^4.20.0",
"concurrently": "^6.0.0",
"esbuild": "^0.11.2",
"eslint": "^7.23.0",
"eslint-config-prettier": "^8.1.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.3.2",
"eslint-plugin-prettier": "^3.3.1",
"husky": "^4.3.8",
"jest": "^26.6.3",
"json": "^10.0.0",
"lint-staged": "^10.5.4",
"nodemon": "^2.0.6",
"prettier": "^2.2.1",
"rollup": "^2.44.0",
"rollup-plugin-esbuild": "^3.0.2",
"rollup-plugin-size-snapshot": "^0.12.0",
"rollup-plugin-uglify": "^6.0.4",
"shx": "^0.3.3",
"ts-node": "^9.0.0",
"tslib": "^2.2.0",
"tslint": "^6.1.3",
"typescript": "^4.2.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/andronov04/mondrian-art.git"
},
"bugs": {
"url": "https://github.com/andronov04/mondrian-art/issues"
},
"homepage": "https://github.com/andronov04/mondrian-art#readme",
"dependencies": {
"animejs": "^3.2.1",
"isect": "^3.0.0",
"tinycolor2": "^1.4.2",
"two.js": "^0.7.5"
},
"directories": {
"example": "examples"
},
"keywords": [
"art",
"generate",
"mondrian",
"generative"
]
}