-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.06 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
{
"name": "data-structures-playground",
"version": "0.0.1",
"description": "A webapp for learning how to manipulate data structures with code.",
"main": "index.ts",
"scripts": {
"build": "webpack",
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SethPoulsen/data-structures-playground.git"
},
"keywords": [
"data structures",
"visual programming languages"
],
"author": "Seth Poulsen",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/SethPoulsen/data-structures-playground/issues"
},
"homepage": "https://github.com/SethPoulsen/data-structures-playground#readme",
"dependencies": {
"fabric": "^3.6.3"
},
"devDependencies": {
"@types/fabric": "^3.6.2",
"@typescript-eslint/eslint-plugin": "^3.0.1",
"@typescript-eslint/parser": "^3.0.1",
"awesome-typescript-loader": "^5.2.1",
"eslint": "^7.1.0",
"eslint-loader": "^4.0.2",
"source-map-loader": "^0.2.4",
"typescript": "^3.8.3",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11"
}
}