forked from nishikaza/LiveCodeEditor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.32 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
{
"name": "playground",
"version": "0.0.1",
"description": "playground Package",
"repository": {
"type": "git",
"url": ""
},
"main": "lib-commonjs/index.js",
"module": "lib/index.js",
"sideEffects": false,
"typings": "lib/index.d.ts",
"license": "MIT",
"scripts": {
"just": "just",
"clean": "just clean",
"build": "just build",
"test": "just test",
"test:update": "just jest -u",
"test:start": "just start-test",
"start": "just start",
"stack:upgrade": "just upgrade-stack",
"webpack": "webpack"
},
"dependencies": {
"@types/babylon": "^6.16.5",
"@types/prettier": "^1.16.4",
"@types/webpack-env": "^1.13.9",
"@uifabric/fluent-theme": "^0.16.6",
"babylon": "^6.18.0",
"jscodeshift": "^0.6.4",
"monaco-editor": "^0.17.0",
"monaco-editor-webpack-plugin": "^1.7.0",
"office-ui-fabric-react": "^6.165.0",
"prettier": "^1.18.2",
"react": "~16.8.0",
"react-dom": "~16.8.0",
"recast": "^0.18.1"
},
"devDependencies": {
"@types/jest": "^24.0.0",
"@types/react": "~16.8.0",
"@types/react-dom": "~16.8.0",
"css-loader": "^2.1.1",
"just-stack-uifabric": ">=0.9.0",
"ts-loader": "^6.0.1",
"typescript": "^3.5.1",
"webpack-bundle-analyzer": "^3.3.2"
},
"just": {
"stack": "just-stack-uifabric"
}
}