forked from microsoft/FluidFramework
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
119 lines (119 loc) · 4.04 KB
/
package.json
File metadata and controls
119 lines (119 loc) · 4.04 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
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
{
"name": "@fluid-example/spaces",
"version": "0.39.0",
"description": "Spaces is a grid layout component",
"homepage": "https://fluidframework.com",
"repository": "https://github.com/microsoft/FluidFramework",
"license": "MIT",
"author": "Microsoft",
"main": "dist/index.js",
"module": "lib/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "concurrently npm:build:compile npm:lint",
"build:compile": "concurrently npm:tsc npm:build:copy",
"build:copy": "copyfiles -u 1 \"src/**/*.css\" dist/",
"build:full": "concurrently npm:build npm:webpack",
"build:full:compile": "concurrently npm:build:compile npm:webpack",
"clean": "rimraf dist lib *.tsbuildinfo *.build.log",
"dev": "npm run webpack:dev",
"eslint": "eslint --format stylish src",
"eslint:fix": "eslint --format stylish src --fix",
"lint": "npm run eslint",
"lint:fix": "npm run eslint:fix",
"prepack": "npm run webpack",
"start": "webpack-dev-server",
"start:server": "tinylicious",
"start:test": "webpack-dev-server --config webpack.test.js",
"test": "npm run test:jest",
"test:jest": "jest",
"test:jest:verbose": "cross-env FLUID_TEST_VERBOSE=1 jest",
"tsc": "tsc",
"tsfmt": "tsfmt --verify",
"tsfmt:fix": "tsfmt --replace",
"webpack": "webpack --env.production",
"webpack:dev": "webpack --env.development"
},
"dependencies": {
"@fluid-example/clicker": "^0.39.0",
"@fluid-example/codemirror": "^0.39.0",
"@fluid-example/collaborative-textarea": "^0.39.0",
"@fluid-example/multiview-coordinate-model": "^0.39.0",
"@fluid-example/multiview-slider-coordinate-view": "^0.39.0",
"@fluid-example/prosemirror": "^0.39.0",
"@fluid-experimental/get-container": "^0.39.0",
"@fluidframework/aqueduct": "^0.39.0",
"@fluidframework/common-definitions": "^0.19.1",
"@fluidframework/core-interfaces": "^0.39.0",
"@fluidframework/datastore-definitions": "^0.39.0",
"@fluidframework/runtime-definitions": "^0.39.0",
"@fluidframework/runtime-utils": "^0.39.0",
"@fluidframework/view-adapters": "^0.39.0",
"@fluidframework/view-interfaces": "^0.39.0",
"office-ui-fabric-react": "^7.28.1",
"prop-types": "^15.7.2",
"react": "^16.10.2",
"react-collapsible": "^2.7.0",
"react-dom": "^16.10.2",
"react-grid-layout": "^0.18.3",
"uuid": "^8.3.1"
},
"devDependencies": {
"@fluidframework/build-common": "^0.21.0-0",
"@fluidframework/eslint-config-fluid": "^0.23.0",
"@fluidframework/test-tools": "^0.2.3074",
"@types/expect-puppeteer": "2.2.1",
"@types/jest": "22.2.3",
"@types/jest-environment-puppeteer": "2.2.0",
"@types/node": "^12.19.0",
"@types/prop-types": "^15",
"@types/puppeteer": "1.3.0",
"@types/react": "^16.9.15",
"@types/react-dom": "^16.9.4",
"@typescript-eslint/eslint-plugin": "~4.14.0",
"@typescript-eslint/parser": "~4.14.0",
"concurrently": "^5.2.0",
"copyfiles": "^2.1.0",
"cross-env": "^7.0.2",
"css-loader": "^1.0.0",
"eslint": "~7.18.0",
"eslint-plugin-eslint-comments": "~3.2.0",
"eslint-plugin-import": "~2.22.1",
"eslint-plugin-no-null": "~1.0.2",
"eslint-plugin-prefer-arrow": "~1.2.2",
"eslint-plugin-react": "~7.22.0",
"eslint-plugin-unicorn": "~26.0.1",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^4.3.0",
"jest": "^26.6.3",
"jest-junit": "^10.0.0",
"jest-puppeteer": "^4.3.0",
"puppeteer": "^1.20.0",
"rimraf": "^2.6.2",
"sass-loader": "^7.1.0",
"source-map-loader": "^0.2.4",
"style-loader": "^1.0.0",
"ts-loader": "^6.1.2",
"typescript": "~4.1.3",
"typescript-formatter": "7.1.0",
"url-loader": "^2.1.0",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.8.0",
"webpack-merge": "^4.1.4"
},
"fluid": {
"browser": {
"umd": {
"files": [
"dist/main.bundle.js"
],
"library": "main"
}
}
},
"jest-junit": {
"outputDirectory": "nyc",
"outputName": "jest-junit-report.xml"
}
}