forked from milikhin/seabass2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.23 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
{
"name": "seabass-editor",
"version": "0.2.0",
"description": "web-editor component for Seabass app",
"main": "index.js",
"scripts": {
"lint": "(cd editor/; standard --parser=babel-eslint)",
"test": "jest --config=./editor/jest.config.js",
"test-watch": "jest --config=./editor/jest.config.js --watch",
"build": "./node_modules/.bin/webpack",
"build-watch": "./node_modules/.bin/webpack --watch"
},
"standard": {
"parser": "babel-eslint"
},
"keywords": [
"seabass",
"editor"
],
"author": "Mikhael Milikhin",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"babel-eslint": "^10.1.0",
"babel-jest": "^25.4.0",
"babel-loader": "^8.1.0",
"copy-webpack-plugin": "^5.1.1",
"core-js": "^3.6.5",
"css-loader": "^3.5.2",
"file-loader": "^6.0.0",
"jest": "^25.4.0",
"standard": "^14.3.3",
"style-loader": "^1.1.4",
"uuid": "^7.0.3",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11"
},
"dependencies": {
"@codemirror/next": "^0.5.5",
"ace-builds": "^1.4.11",
"codemirror": "^5.53.2"
}
}