-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.11 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
{
"name": "drawing-tool",
"version": "1.0.0",
"description": "Final project for Msc Creative Coding 2. This project uses ReactJS as an interface for a WebGL and WebAssembly-based drawing tool.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "parcel ./public/index.html",
"build": "parcel build ./public/index.html"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Toruitas/drawing-tool.git"
},
"author": "Stuart Leitch",
"license": "MIT",
"bugs": {
"url": "https://github.com/Toruitas/drawing-tool/issues"
},
"homepage": "https://github.com/Toruitas/drawing-tool#readme",
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"parcel-bundler": "^1.12.4",
"sass": "^1.26.3"
},
"dependencies": {
"@reduxjs/toolkit": "^1.3.2",
"bulma": "^0.8.1",
"gl-matrix": "^3.3.0",
"react": "^16.13.1",
"react-color": "^2.18.0",
"react-dom": "^16.13.1",
"react-redux": "^7.2.0",
"redux-logger": "^3.0.6",
"twgl.js": "^4.14.2"
}
}