-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.03 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.03 KB
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
{
"name": "dynamic-code",
"version": "1.0.6",
"description": "a structure for building systems that recompile themself",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"build": "tsc",
"sample1": "node samples/sample-1.js",
"sample2": "node samples/sample-2.js",
"sample3": "node samples/sample-3.js",
"sample4": "node samples/sample-4.js",
"sample5": "node samples/sample-5.js",
"build-docs": "typedoc index.ts --out docs/ --module modules --readme docs-readme.md"
},
"author": "Bela Bohlender",
"license": "MIT",
"devDependencies": {
"@types/express": "^4.17.2",
"@types/memory-fs": "^0.3.2",
"@types/node": "^12.12.8",
"@types/react": "^16.9.13",
"@types/react-dom": "^16.9.4",
"@types/webpack": "^4.41.0",
"express": "^4.17.1",
"memory-fs": "^0.5.0",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"ts-loader": "^6.2.1",
"typescript": "^3.7.2",
"unionfs": "^4.2.0",
"webpack": "^4.41.2"
},
"dependencies": {
"rxjs": "^6.5.3"
}
}