-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 956 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 956 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
31
32
33
34
35
36
{
"name": "constructor",
"version": "1.0.0",
"author": "Mathieu CAROFF <mathieu.caroff@free.fr>",
"packageManager": "yarn@4.3.1",
"repository": {
"type": "git",
"url": "https://github.com/mathieucaroff/constructor"
},
"license": "CC0-1.0",
"scripts": {
"check": "tsc --noEmit",
"checkwatch": "tsc --noEmit --watch",
"build": "parcel build src/index.html",
"mcabuild": "parcel build src/index.html --public-url constructor.d",
"dev": "parcel src/index.html",
"test": "mocha src/test.ts"
},
"devDependencies": {
"@types/assert": "^1.5.10",
"@types/mocha": "^10.0.7",
"@types/react": "^17.0.39",
"@types/react-dom": "^17.0.11",
"mocha": "^10.7.0",
"parcel": "^2.3.2",
"prettier": "^2.5.1",
"process": "^0.11.10",
"tsx": "^4.16.2",
"typescript": "^4.5.5"
},
"dependencies": {
"@picocss/pico": "^1.5.6",
"react": "^17.0.2",
"react-dom": "^17.0.2"
}
}