-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.47 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
{
"name": "comp1720-2021-assignment-2",
"version": "1.0.0",
"description": "https://cs.anu.edu.au/courses/comp1720/assessments/03-interactive-picture-window/",
"main": "sketch.js",
"scripts": {
"build": "rollup -c",
"serve": "rollup -c -w",
"lint": "eslint"
},
"repository": {
"type": "git",
"url": "https://gitlab.cecs.anu.edu.au/comp1720/2021/comp1720-2021-assignment-2.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"dat.gui": "^0.7.7",
"geometric": "^2.2.8",
"lodash": "^4.17.21",
"object-hash": "^2.2.0",
"p5": "^1.4.0",
"random": "^3.0.6",
"seedrandom": "^3.0.5",
"typescript": "^4.4.3"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^21.0.0",
"@rollup/plugin-node-resolve": "^13.0.5",
"@rollup/plugin-typescript": "^8.2.5",
"@types/dat.gui": "^0.7.7",
"@types/geometric": "^2.2.0",
"@types/lodash": "^4.14.175",
"@types/object-hash": "^2.2.1",
"@types/p5": "^1.3.1",
"@types/seedrandom": "^3.0.1",
"@typescript-eslint/eslint-plugin": "^4.32.0",
"@typescript-eslint/parser": "^4.32.0",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-airbnb-typescript": "^14.0.0",
"eslint-config-p5js": "^1.1.0",
"eslint-plugin-import": "^2.24.2",
"rollup": "^2.57.0",
"rollup-plugin-import-css": "^3.0.2",
"stylelint": "^14.0.0",
"stylelint-config-standard": "^23.0.0",
"tslib": "^2.3.1"
}
}