-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.29 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.29 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "creditcommons-simulation",
"version": "0.0.1",
"description": "A TypeScript Simulation of Credit Commons",
"main": "index.js",
"scripts": {
"generate": "ts-node ./src/generate.ts",
"start": "webpack-dev-server --port 9000 --inline --progress --profile --colors --watch --content-base src/ --mode development",
"build": "webpack --config webpack.config.js --mode production",
"build.prod": "webpack --config webpack.config.js -p",
"build.esnext": "npm run build:types && npm run build:js",
"build:types": "tsc --emitDeclarationOnly",
"build:js": "babel src --out-dir dist --extensions \".ts,.tsx\" --source-maps inline",
"build.all": "npm run build.prod && npm run build.esnext",
"test": "karma start karma.config.js"
},
"keywords": [
"webpack",
"webpack4",
"typescript"
],
"author": "Miles Thompson",
"license": "MPL2",
"dependencies": {
"@syncfusion/ej2-base": "^18.1.53",
"@syncfusion/ej2-inputs": "^18.1.55",
"benchmark": "^2.1.4",
"cytoscape": "^3.14.2",
"cytoscape-cola": "^2.4.0",
"cytoscape-euler": "^1.2.2",
"cytoscape-node-html-label": "^1.2.2",
"faker": "^5.5.3",
"koa": "^2.11.0",
"koa-json": "^2.0.2",
"koa-router": "^8.0.8",
"koa-static": "^5.0.0",
"node-random-name": "^1.0.1",
"open": "^7.0.3",
"probability-distributions": "^0.9.1",
"ts-node": "^10.2.1"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.4.0",
"@babel/plugin-proposal-class-properties": "^7.4.0",
"@babel/plugin-proposal-object-rest-spread": "^7.4.0",
"@babel/preset-env": "^7.4.1",
"@babel/preset-typescript": "^7.3.3",
"@types/cytoscape": "^3.14.15",
"@types/faker": "^5.5.8",
"@types/jasmine": "2.8.7",
"@types/node": "7.0.0",
"@types/probability-distributions": "^0.1.0",
"awesome-typescript-loader": "5.2.0",
"jasmine-core": "3.1.0",
"karma": "2.0.4",
"karma-jasmine": "1.1.2",
"karma-phantomjs-launcher": "1.0.4",
"karma-webpack": "3.0.0",
"source-map-loader": "0.2.3",
"tslint": "5.17.0",
"tslint-loader": "3.6.0",
"typescript": "3.5.1",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
}
}