forked from microsoft/FluidFramework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
153 lines (153 loc) · 5.08 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
{
"name": "@fluid-example/webflow",
"version": "2.0.0-internal.4.3.0",
"private": true,
"description": "Collaborative markdown editor.",
"homepage": "https://fluidframework.com",
"repository": {
"type": "git",
"url": "https://github.com/microsoft/FluidFramework.git",
"directory": "examples/data-objects/webflow"
},
"license": "MIT",
"author": "Microsoft and contributors",
"sideEffects": false,
"main": "dist/index.js",
"module": "lib/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "concurrently npm:build:compile npm:lint",
"build:commonjs": "npm run tsc && npm run build:test",
"build:compile": "concurrently npm:build:commonjs npm:build:esnext npm:build:copy",
"build:copy": "copyfiles -u 1 \"src/**/*.css\" dist/ && copyfiles -u 1 \"src/**/*.css\" lib/",
"build:esnext": "tsc --project ./tsconfig.esnext.json",
"build:full": "concurrently npm:build npm:webpack",
"build:full:compile": "concurrently npm:build:compile npm:webpack",
"build:test": "tsc --project ./src/test/tsconfig.json",
"clean": "rimraf dist lib *.tsbuildinfo *.build.log",
"dev": "npm run build:esnext -- --watch",
"eslint": "eslint --format stylish src",
"eslint:fix": "eslint --format stylish src --fix --fix-type problem,suggestion,layout",
"format": "npm run prettier:fix",
"lint": "npm run prettier && npm run eslint",
"lint:fix": "npm run prettier:fix && npm run eslint:fix",
"prepack": "npm run webpack",
"prettier": "prettier --check . --ignore-path ../../../.prettierignore",
"prettier:fix": "prettier --write . --ignore-path ../../../.prettierignore",
"start": "webpack serve --config webpack.config.js",
"start:docker": "webpack serve --config webpack.config.js --env mode=docker",
"start:r11s": "webpack serve --config webpack.config.js --env mode=r11s",
"start:single": "webpack serve --config webpack.config.js --env.single true",
"start:spo": "webpack serve --config webpack.config.js --env mode=spo",
"start:spo-df": "webpack serve --config webpack.config.js --env mode=spo-df",
"start:tinylicious": "webpack serve --config webpack.config.js --env mode=tinylicious",
"test": "npm run test:mocha",
"test:coverage": "nyc npm test -- --reporter xunit --reporter-option output=nyc/junit-report.xml --exit",
"test:mocha": "mocha --config src/test/.mocharc.js dist/test/**/*.spec.js",
"test:mocha:multireport": "cross-env FLUID_TEST_MULTIREPORT=1 npm run test:mocha",
"test:mocha:verbose": "cross-env FLUID_TEST_VERBOSE=1 npm run test:mocha",
"tsc": "tsc",
"webpack": "webpack --env production",
"webpack:dev": "webpack --env development"
},
"nyc": {
"all": true,
"cache-dir": "nyc/.cache",
"exclude": [
"**/*.d.ts",
"src/test/**/*.ts",
"dist/test/**/*.js"
],
"exclude-after-remap": false,
"extension": [
".ts",
".tsx",
".js",
".jsx"
],
"include": [
"src/**/*.ts",
"dist/**/*.js"
],
"report-dir": "nyc/report",
"require": [
"ts-node/register"
],
"temp-directory": "nyc/.nyc_output"
},
"dependencies": {
"@fluid-example/example-utils": "workspace:~",
"@fluidframework/aqueduct": "workspace:~",
"@fluidframework/common-definitions": "^0.20.1",
"@fluidframework/common-utils": "^1.1.1",
"@fluidframework/core-interfaces": "workspace:~",
"@fluidframework/data-object-base": "workspace:~",
"@fluidframework/map": "workspace:~",
"@fluidframework/merge-tree": "workspace:~",
"@fluidframework/runtime-definitions": "workspace:~",
"@fluidframework/sequence": "workspace:~",
"@fluidframework/view-interfaces": "workspace:~",
"assert": "^2.0.0",
"debug": "^4.1.1",
"events": "^3.1.0",
"react": "^17.0.1",
"react-dom": "^17.0.1"
},
"devDependencies": {
"@fluid-internal/test-version-utils": "workspace:~",
"@fluid-tools/webpack-fluid-loader": "workspace:~",
"@fluidframework/build-common": "^1.1.0",
"@fluidframework/eslint-config-fluid": "^2.0.0",
"@fluidframework/mocha-test-setup": "workspace:~",
"@fluidframework/runtime-utils": "workspace:~",
"@fluidframework/test-utils": "workspace:~",
"@types/debug": "^4.1.5",
"@types/mocha": "^9.1.1",
"@types/node": "^14.18.38",
"@types/react": "^17.0.44",
"@types/react-dom": "^17.0.18",
"concurrently": "^7.6.0",
"copyfiles": "^2.4.1",
"cross-env": "^7.0.3",
"css-loader": "^1.0.0",
"eslint": "~8.6.0",
"file-loader": "^3.0.1",
"html-loader": "^3.1.0",
"ignore-styles": "^5.0.1",
"jsdom": "^16.7.0",
"jsdom-global": "^3.0.2",
"mocha": "^10.2.0",
"mocha-json-output-reporter": "^2.0.1",
"mocha-multi-reporters": "^1.5.1",
"moment": "^2.21.0",
"nyc": "^15.1.0",
"prettier": "~2.6.2",
"rimraf": "^4.4.0",
"source-map-loader": "^2.0.0",
"source-map-support": "^0.5.16",
"style-loader": "^1.0.0",
"ts-loader": "^9.3.0",
"ts-node": "^8.6.2",
"typescript": "~4.5.5",
"url-loader": "^2.1.0",
"webpack": "^5.82.0",
"webpack-bundle-analyzer": "^4.5.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "~4.6.0",
"webpack-merge": "^5.8.0"
},
"fluid": {
"browser": {
"umd": {
"files": [
"dist/main.bundle.js"
],
"library": "main"
}
}
},
"typeValidation": {
"disabled": true,
"broken": {}
}
}