-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 879 Bytes
/
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
{
"name": "@code-not-art/template",
"version": "1.2.0",
"description": "Quick Start Template for a sketching some code art",
"main": "index.js",
"scripts": {
"start": "parcel src/public/index.html",
"build": "parcel build src/public/index.html",
"test": "echo \"Error: no test specified\" && exit 1"
},
"license": "GPL-3.0-or-later",
"prettier": {
"trailingComma": "all",
"singleQuote": true,
"arrowFunctionParentheses": "always"
},
"dependencies": {
"@code-not-art/core": "^0.5.0",
"@code-not-art/sketch": "^0.9.2",
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"devDependencies": {
"@types/react": "^17.0.19",
"@types/react-dom": "^17.0.9",
"@types/react-helmet": "^6.1.2",
"parcel-bundler": "^1.12.5",
"react-hot-loader": "^4.13.0",
"ts-node": "^10.2.1",
"typescript": "^4.4.2"
}
}