This repository has been archived by the owner on May 7, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
111 lines (111 loc) · 3.64 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
{
"name": "template-studio-v2",
"version": "1.0.0",
"description": "A Web UI for creating, editing and testing Accord Project templates",
"private": true,
"scripts": {
"start": "webpack-dev-server --config webpack.config.js --mode development --watch ",
"build": "NODE_OPTIONS=--max_old_space_size=4096 webpack --config webpack.config.js --mode production",
"lint": "eslint --ext .js --ext .jsx --ignore-path .gitignore ./src",
"test": "jest",
"test:watch": "npm test -- --watch"
},
"repository": {
"type": "git",
"url": "https://github.com/accordproject/template-studio-v2.git"
},
"keywords": [],
"author": "accordproject.org",
"license": "Apache-2.0",
"devDependencies": {
"@babel/core": "^7.7.2",
"@babel/plugin-proposal-class-properties": "^7.7.0",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.6.2",
"@babel/preset-env": "^7.7.1",
"@babel/preset-react": "^7.7.0",
"@clausehq/eslint-config": "^0.1.8",
"babel-eslint": "^10.0.3",
"babel-jest": "^24.9.0",
"babel-loader": "^8.0.5",
"babel-plugin-styled-components": "^1.10.6",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"babel-plugin-transform-runtime": "^6.23.0",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^3.2.0",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.15.1",
"enzyme-to-json": "^3.4.3",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.1",
"eslint-config-loopback": "^13.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^22.21.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.16.0",
"eslint-plugin-react-hooks": "^1.7.0",
"file-loader": "^4.2.0",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"increase-memory-limit": "^1.0.6",
"jest": "^24.9.0",
"mini-css-extract-plugin": "^0.8.0",
"monaco-editor-webpack-plugin": "^1.7.0",
"node-sass": "^4.13.0",
"redux-devtools": "^3.5.0",
"redux-saga-test-plan": "^4.0.0-rc.3",
"sass-loader": "^7.3.1",
"style-loader": "^0.23.1",
"url-loader": "^2.2.0",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.9.0"
},
"dependencies": {
"@accordproject/cicero-core": "^0.20.7",
"@accordproject/cicero-ui": "^0.4.0",
"@accordproject/ergo-compiler": "^0.20.7",
"@accordproject/markdown-slate": "^0.9.4",
"@babel/runtime": "^7.7.2",
"mixin-deep": "^2.0.1",
"monaco-editor": "^0.15.1",
"prop-types": "^15.7.2",
"ramda": "^0.26.1",
"react": "^16.11.0",
"react-dom": "^16.11.0",
"react-json-view": "^1.19.1",
"react-monaco-editor": "^0.25.1",
"react-redux": "^7.1.3",
"redux": "^4.0.4",
"redux-logger": "^3.0.6",
"redux-saga": "^1.1.3",
"semantic-ui-css": "^2.4.1",
"semantic-ui-react": "^0.87.3",
"slate": "^0.47.8",
"slate-react": "^0.22.9",
"styled-components": "^4.4.1",
"throttle-debounce": "^2.1.0",
"uuidv4": "^4.0.0"
},
"jest": {
"moduleFileExtensions": [
"js",
"json"
],
"moduleDirectories": [
"node_modules",
"src"
],
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/__mocks__/fileMock.js",
"\\.(css|styl)$": "<rootDir>/__mocks__/styleMock.js",
"\\.worker.js": "<rootDir>/__mocks__/workerMock.js",
"^.+\\.(css|scss)$": "identity-obj-proxy",
"monaco-editor": "<rootDir>/node_modules/react-monaco-editor"
},
"setupFiles": [
"./src/utilities/test/jestEnzyme"
]
}
}