-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.23 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
40
41
42
43
44
45
{
"name": "react-generator-components",
"version": "0.0.1",
"description": "Generator based rendering for React components",
"main": "dist/index.js",
"scripts": {
"develop": "parcel serve src/playground/index.html",
"test": "mocha",
"test:watch": "nodemon -e ts,tsx --exec mocha"
},
"type": "module",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/mzedeler/react-generator-components.git"
},
"keywords": [
"react",
"generators"
],
"author": "Michael Zedeler <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/mzedeler/react-generator-components/issues"
},
"homepage": "https://github.com/mzedeler/react-generator-components#readme",
"devDependencies": {
"@testing-library/react": "^14.1.2",
"@types/chai": "^4.3.11",
"@types/chai-dom": "^1.11.3",
"@types/mocha": "^10.0.6",
"chai": "^5.0.0",
"chai-dom": "^1.12.0",
"eslint": "^8.56.0",
"global-jsdom": "^9.2.0",
"mocha": "^10.2.0",
"nodemon": "^3.0.2",
"parcel": "^2.10.3",
"process": "^0.11.10",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"ts-node": "^10.9.2",
"typescript": "^5.3.3",
"typescript-eslint": "^0.0.1-alpha.0"
}
}