-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 798 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 798 Bytes
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
{
"name": "factorization",
"version": "1.0.0",
"author": "Mathieu CAROFF <mathieu.caroff@free.fr>",
"repository": {
"type": "git",
"url": "https://github.com/mathieucaroff/factorize"
},
"license": "CC0-1.0",
"scripts": {
"check": "tsc --noEmit",
"checkwatch": "tsc --noEmit --watch",
"build": "parcel build src/index.html --dist-dir public",
"mcabuild": "parcel build src/index.html --public-url factorize.d",
"serve": "parcel src/index.html"
},
"devDependencies": {
"@types/react": "^17.0.39",
"@types/react-dom": "^17.0.11",
"parcel": "^2.3.2",
"prettier": "^2.5.1",
"process": "^0.11.10",
"typescript": "^4.5.5"
},
"dependencies": {
"@picocss/pico": "^1.5.6",
"react": "^17.0.2",
"react-dom": "^17.0.2"
}
}