-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.9 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
{
"name": "sdui-dev",
"private": true,
"scripts": {
"start": "meteor run --exclude-archs web.browser.legacy",
"test": "meteor test --once --driver-package meteortesting:mocha",
"test-app": "TEST_WATCH=1 meteor test --full-app --driver-package meteortesting:mocha",
"visualize": "meteor --production --extra-packages bundle-visualizer"
},
"dependencies": {
"@babel/runtime": "^7.11.2",
"@fortawesome/fontawesome-svg-core": "^1.2.35",
"@fortawesome/free-solid-svg-icons": "^5.15.3",
"@fortawesome/react-fontawesome": "^0.1.14",
"@react-hook/debounce": "^4.0.0",
"@react-hook/size": "^2.1.2",
"@react-hook/throttle": "^2.2.0",
"bcrypt": "^5.0.1",
"lodash": "^4.17.21",
"markdown-it": "^12.2.0",
"meteor-node-stubs": "^1.0.1",
"papaparse": "^5.3.1",
"rc-tooltip": "^5.1.1",
"react": "^16.13.1",
"react-ace": "^9.4.4",
"react-dom": "^16.13.1",
"react-draggable": "^4.4.3",
"react-functional-select": "^3.3.3",
"react-modal": "^3.14.3",
"react-router-dom": "^5.2.0",
"react-toastify": "^7.0.4",
"react-virtualized": "^9.22.3",
"react-window": "^1.8.6",
"simpl-schema": "^1.12.0",
"styled-components": "^5.3.0",
"twind": "^0.16.16",
"uniforms": "^3.5.1",
"uniforms-bridge-simple-schema-2": "^3.5.1"
},
"devDependencies": {
"@types/lodash": "^4.14.171",
"@types/meteor": "^1.4.49",
"@types/mocha": "^8.0.3",
"@types/node": "^16.3.3",
"@types/react": "^16.14.14",
"@types/react-dom": "^16.9.8",
"@types/react-modal": "^3.12.0",
"@types/react-router-dom": "^5.1.8",
"autoprefixer": "^10.2.6",
"postcss": "^8.3.5",
"postcss-import": "^14.0.2",
"postcss-load-config": "^3.1.0",
"typescript": "^4.2.2"
},
"meteor": {
"mainModule": {
"client": "client/main.coffee",
"server": "server/main.coffee"
},
"testModule": "tests/main.coffee"
}
}