forked from digirati-co-uk/vam-manifest-editor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
90 lines (90 loc) · 2.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
{
"name": "vam-experience-editor",
"version": "1.0.1",
"description": "Experience Editor Components",
"authors": [
"Kelsie Braidwood <[email protected]>",
"Stephen Fraser <[email protected]>"
],
"license": "MIT",
"main": "lib/index.js",
"scripts": {
"start": "fesk-start",
"release": "NODE_ENV=production fesk-build",
"build": "NODE_ENV=production fesk-build",
"watch": "fesk-watch",
"test": "jest --coverage",
"test:watch": "jest --coverage --watch",
"deploy": "yarn && NODE_ENV=production fesk-build && yarn _deploy",
"//": "========= PRIVATE SCRIPTS =========",
"_deploy": "netlify deploy --prod"
},
"peerDependencies": {
"react": "16.14.0",
"react-dom": "16.14.0"
},
"devDependencies": {
"@babel/core": "^7.15.5",
"@babel/preset-env": "^7.15.4",
"@fesk/scripts": "1.4.0-pr.ff65c8c1",
"@fesk/webpack-config": "1.3.0",
"babel-core": "^7.0.0-bridge",
"babel-jest": "^23.6.0",
"enzyme": "^3.7.0",
"enzyme-adapter-react-16": "^1.7.0",
"immutability-helper": "^3.0.1",
"jest": "^23.6.0",
"webpack-config": "^7.5.0"
},
"dependencies": {
"@digirati/vam-viewer": "1.5.0",
"@fesk/react-bem": "^1.1.2",
"@digirati/me-core": "1.0.2",
"@digirati/me-experience-editor": "1.0.3",
"@material-ui/core": "^3.6.1",
"@material-ui/icons": "^3.0.1",
"classnames": "^2.2.6",
"deepmerge": "^3.0.0",
"dotenv-webpack": "^1.7.0",
"immer": "^1.8.0",
"langs": "^2.0.0",
"notistack": "^0.8.8",
"prop-types": "^15.6.2",
"react-beautiful-dnd": "^10.0.2",
"react-container-dimensions": "^1.4.1",
"react-dropzone": "7.0.1",
"react-input-range": "^1.3.0",
"react-lazy-images": "^1.1.0",
"react-quill": "^1.3.3",
"react-rnd": "^9.0.4",
"react-scroll-wheel-handler": "^1.0.6",
"react-virtualized": "^9.21.0",
"throttle-debounce": "^2.1.0"
},
"fesk": {
"port": 5501,
"metalsmith": {
"nunjucks": {
"liveServerPort": 35738
}
}
},
"jest": {
"transform": {
"^.+\\.jsx?$": "<rootDir>/jest.transform.js"
},
"moduleNameMapper": {
"\\.(css|less|sass|scss)$": "<rootDir>/__mocks__/styleMock.js"
},
"setupTestFrameworkScriptFile": "<rootDir>/setup.jest.js",
"coveragePathIgnorePatterns": [
"/node_modules/",
"/coverage/",
".*\\.js\\.snap",
"jest.transform.js",
".json",
"setup.jest.js",
"webpack.config.js"
]
}
}