-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·54 lines (54 loc) · 1.44 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
{
"name": "submission-system",
"private": false,
"version": "1.0.0",
"scripts": {
"build": "npm run lint && npm run test && meteor build build/",
"lint": "npx prettier --write .",
"start": "meteor run",
"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": {
"@types/classnames": "^2.2.9",
"@types/react-router-dom": "^5.1.3",
"@types/react-sortable-hoc": "^0.7.1",
"@types/uuid": "^3.4.7",
"antd": "^3.26.6",
"base64-blob": "^1.4.1",
"bcrypt": "^3.0.7",
"classnames": "^2.3.1",
"dropbox": "^4.0.30",
"history": "^4.10.1",
"indexof": "0.0.1",
"meteor-node-stubs": "^1.0.0",
"node-fetch": "^2.6.0",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-router": "^5.1.2",
"react-router-dom": "^5.1.2",
"react-sortable-hoc": "^1.11.0",
"react-sortablejs": "^2.0.9",
"sortablejs": "^1.12.0",
"uuid": "^3.4.0",
"wordcount": "^1.1.1"
},
"devDependencies": {
"@types/meteor": "^1.4.30",
"@types/mocha": "^5.2.7",
"@types/react": "^16.9.0",
"@types/react-dom": "^16.9.0",
"@types/react-router": "^5.1.3",
"prettier": "2.1.2",
"tslint": "^5.20.1",
"typescript": "^3.6.3"
},
"meteor": {
"mainModule": {
"client": "client/main.tsx",
"server": "server/main.ts"
},
"testModule": "tests/main.ts"
}
}