forked from finos/FDC3-conformance-framework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.25 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
{
"private": true,
"scripts": {
"copy": "shx mkdir -p ./dist && shx cp -R static/* ./dist",
"compile": "webpack build",
"replace-glue-core": "npm run copy && npx replace-in-file --configFile=options/glue-core-app.js && npx replace-in-file --configFile=options/glue-core-support.js",
"serve": "npx http-server ./dist -p 3001 -c-1",
"start": "npm run copy && npm run compile && npm run serve",
"start-glue-core": "npm run compile && npm run copy && npm run replace-glue-core && npm run serve",
"build-static": "npm run compile && npm run copy"
},
"dependencies": {
"buffer": "^6.0.3",
"chai": "^4.3.6",
"fdc3_1_2": "npm:@finos/fdc3@^1.2.0",
"fdc3_2_0": "npm:@finos/fdc3@^2.0.0-beta.4",
"mocha": "^10.0.0",
"process": "^0.11.10",
"source-map-support": "^0.5.21",
"stream-browserify": "^3.0.0",
"util": "^0.12.4",
"window": "^1.0.0"
},
"devDependencies": {
"@types/chai": "^4.3.0",
"@types/mocha": "^9.1.0",
"css-loader": "^6.7.2",
"http-server": "^14.1.1",
"prettier": "^2.5.1",
"replace-in-file": "^6.3.5",
"shx": "^0.3.4",
"style-loader": "^3.3.1",
"ts-loader": "^9.2.7",
"typescript": "^4.6.2",
"webpack": "^5.69.1",
"webpack-cli": "^4.9.2"
}
}