forked from microsoft/FluidFramework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
105 lines (105 loc) · 3.47 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
{
"name": "@fluid-example/smde",
"version": "2.0.0-internal.4.3.0",
"private": true,
"description": "Simple markdown editor",
"homepage": "https://fluidframework.com",
"repository": {
"type": "git",
"url": "https://github.com/microsoft/FluidFramework.git",
"directory": "examples/data-objects/smde"
},
"license": "MIT",
"author": "Microsoft and contributors",
"main": "lib/index.js",
"module": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "concurrently npm:build:compile npm:lint",
"build:compile": "npm run build:esnext",
"build:esnext": "tsc",
"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 --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: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",
"webpack": "webpack --env production",
"webpack:dev": "webpack --env development"
},
"dependencies": {
"@fluidframework/aqueduct": "workspace:~",
"@fluidframework/common-utils": "^1.1.1",
"@fluidframework/container-definitions": "workspace:~",
"@fluidframework/container-runtime": "workspace:~",
"@fluidframework/container-runtime-definitions": "workspace:~",
"@fluidframework/core-interfaces": "workspace:~",
"@fluidframework/datastore": "workspace:~",
"@fluidframework/datastore-definitions": "workspace:~",
"@fluidframework/map": "workspace:~",
"@fluidframework/merge-tree": "workspace:~",
"@fluidframework/request-handler": "workspace:~",
"@fluidframework/runtime-definitions": "workspace:~",
"@fluidframework/runtime-utils": "workspace:~",
"@fluidframework/sequence": "workspace:~",
"@fluidframework/view-adapters": "workspace:~",
"events": "^3.1.0",
"react": "^17.0.1",
"simplemde": "^1.11.2"
},
"devDependencies": {
"@fluid-tools/webpack-fluid-loader": "workspace:~",
"@fluidframework/build-common": "^1.1.0",
"@fluidframework/eslint-config-fluid": "^2.0.0",
"@types/events": "^3.0.0",
"@types/react": "^17.0.44",
"@types/simplemde": "^1.11.7",
"concurrently": "^7.6.0",
"css-loader": "^1.0.0",
"eslint": "~8.6.0",
"prettier": "~2.6.2",
"rimraf": "^4.4.0",
"style-loader": "^1.0.0",
"ts-loader": "^9.3.0",
"typescript": "~4.5.5",
"webpack": "^5.82.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"
}
}
},
"pnpm": {
"packageExtensions": {
"simplemde": {
"dependencies": {
"codemirror": "^5.65.11"
}
}
}
},
"typeValidation": {
"disabled": true,
"broken": {}
}
}