-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
executable file
·111 lines (111 loc) · 3.98 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": "com.atomic.cep-barebones",
"version": "1.0.0",
"description": "Barebones CEP Adobe Illustrator Panel",
"main": "client/Client.js",
"directories": {
"host": "host",
"core": "host/core",
"lib": "client/lib",
"test": "tests",
"csxs": "CSXS",
"client": "client",
"theme": "client/theme",
"icons": "icons",
"bin": "bin",
"jsx-console": "client/lib/jsx-console",
"ThemeSwitcher": "client/lib/ThemeSwitcher",
"FlyoutMenu": "client/lib/FlyoutMenu",
"CSInterface": "client/lib/CSInterface"
},
"scripts": {
"host": "node --max-old-space-size=8192 node_modules/webpack/bin/webpack.js --mode development --config=webpack.host.js",
"client": "node --max-old-space-size=8192 node_modules/webpack/bin/webpack.js --mode development --config=webpack.config.js",
"dev": "node --max-old-space-size=8192 node_modules/webpack/bin/webpack.js --mode development && npm run host",
"build": "node --max-old-space-size=8192 node_modules/webpack/bin/webpack.js --mode production && npm run host && source build.sh",
"server": "pouchdb-server -d ./db"
},
"repository": {
"type": "git",
"url": "git+https://github.com/iconifyit/cep-barebones.git"
},
"author": "scott <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/iconifyit/cep-barebones/issues"
},
"homepage": "https://github.com/iconifyit/cep-barebones#readme",
"dependencies": {
"@babel/polyfill": "^7.12.1",
"@babel/runtime": "^7.11.2",
"@material-ui/core": "^4.11.4",
"@material-ui/icons": "^4.11.2",
"@servicetitan/design-system": "^9.5.0",
"antd": "^4.16.6",
"glob": "^7.1.6",
"gulp-clean-css": "^4.3.0",
"gulp-concat": "^2.6.1",
"gulp-string-replace": "^1.1.2",
"history": "^4.10.1",
"is_js": "^0.9.0",
"jest": "^26.6.3",
"lodash": "^4.17.21",
"macaddress": "^0.5.2",
"mkdirp": "^1.0.4",
"moment": "^2.29.1",
"ncp": "^2.0.0",
"path": "^0.12.7",
"pouchdb-adapter-idb": "^7.2.2",
"pouchdb-adapter-memory": "^7.2.2",
"pouchdb-server": "^4.2.0",
"prop-types": "^15.7.2",
"react": "^16.13.0",
"react-dom": "^16.13.1",
"react-redux": "^7.2.2",
"react-router-dom": "^5.2.0",
"react-toastify": "^7.0.3",
"redux": "^4.1.1",
"redux-thunk": "^2.3.0",
"regenerator-runtime": "^0.13.7",
"rxdb": "^9.14.0",
"sassify": "^4.0.1",
"serve": "^11.3.2",
"styled-components": "^5.2.0",
"uuid": "^8.3.2",
"xmldom": "^0.3.0"
},
"devDependencies": {
"@babel/core": "^7.12.16",
"@babel/plugin-transform-runtime": "^7.11.0",
"@babel/preset-env": "^7.12.16",
"@babel/preset-react": "^7.12.10",
"@reduxjs/toolkit": "^1.5.0",
"acorn": "^7.4.1",
"babel-core": "^6.26.3",
"babel-loader": "^8.2.2",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"clean-webpack-plugin": "^3.0.0",
"connected-react-router": "^6.9.1",
"copy-webpack-plugin": "^6.0.3",
"css-loader": "^4.2.0",
"file-loader": "^6.0.0",
"html-loader": "^1.3.2",
"html-webpack-plugin": "^4.3.0",
"http": "^0.0.1-security",
"map-stream": "0.0.7",
"mini-css-extract-plugin": "^0.9.0",
"postcss-loader": "^3.0.0",
"style-loader": "^1.2.1",
"terser-webpack-plugin": "^3.0.8",
"through2": "^4.0.2",
"uglify-js": "^3.11.4",
"uglifyjs-webpack-plugin": "^2.2.0",
"webpack": "^4.46.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.10.3",
"workbox-webpack-plugin": "^5.1.3"
}
}