forked from source-academy/frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
126 lines (126 loc) · 4.43 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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"private": true,
"name": "cadet-frontend",
"version": "1.2.0",
"scripts-info": {
"format": "Format source code",
"start": "Start the Webpack development server",
"build": "Build production bundle",
"test": "Run unit tests",
"update-ui-snapshots": "Update UI test snapshots"
},
"scripts": {
"build": "node-sass-chokidar src/ -o src/ && react-scripts-ts build",
"build-css": "node-sass-chokidar src/ -o src/",
"build-js": "react-scripts-ts build",
"coverage": "./scripts/coverage-fix.sh do && react-scripts-ts test --env=jsdom --coverage && ./scripts/coverage-fix.sh undo",
"format": "prettier --write \"src/**/*.{ts,tsx}\" \"externalLibs/**/*.js\" \"!externalLibs/assert_compiled.js\" && prettier --write --parser scss \"src/**/*.scss\"",
"format:tsx": "prettier --list-different \"src/**/*.{ts,tsx}\"",
"format:scss": "prettier --list-different --parser scss \"src/**/*.scss\"",
"format:ci": "npm run format:tsx && npm run format:scss",
"start-js": "cross-env BROWSER=none PORT=8075 react-scripts-ts start",
"start": "npm-run-all -p watch-css start-js",
"test": "react-scripts-ts test --env=jsdom",
"test-coveralls": "./scripts/coverage-fix.sh do && react-scripts-ts test --env=jsdom --coverage --coverageReporters=text-lcov | coveralls",
"update-ui-snapshots": "jest --updateSnapshot",
"watch-css": "node-sass-chokidar src/ -o src/ --watch --recursive",
"tslint": "tslint -p .",
"cors-proxy": "lcp --proxyUrl http://localhost:4000 --port 4001 --proxyPartial \"\""
},
"husky": {
"hooks": {
"pre-push": "bash scripts/test.sh"
}
},
"dependencies": {
"@pusher/chatkit-client": "^1.5.0",
"acorn": "^4.0.13",
"ag-grid": "^18.0.1",
"ag-grid-react": "^18.0.0",
"astring": "^1.3.0",
"classnames": "^2.2.6",
"common-tags": "^1.7.2",
"cross-env": "^5.2.0",
"draft-js": "^0.10.5",
"flexboxgrid": "^6.3.1",
"flexboxgrid-helpers": "^1.1.3",
"jwt-decode": "^2.2.0",
"js-slang": "0.2.4",
"lodash": "^4.17.13",
"lz-string": "^1.4.4",
"moment": "^2.22.2",
"node-sass-chokidar": "^1.3.5",
"normalize.css": "^8.0.0",
"npm-run-all": "^4.1.5",
"pixi-filters": "^2.6.1",
"pixi.js": "^4.8.0",
"query-string": "^6.1.0",
"re-resizable": "^4.4.8",
"react": "^16.8.6",
"react-ace": "^6.4.0",
"react-copy-to-clipboard": "^5.0.1",
"react-dom": "^16.8.6",
"react-dom-factories": "^1.0.2",
"react-hotkeys": "^1.1.4",
"react-mde": "^5.6.0",
"react-redux": "^5.1.0",
"react-router": "^4.2.0",
"react-router-dom": "^4.2.2",
"react-router-redux": "^5.0.0-alpha.9",
"react-textarea-autosize": "^7.1.0",
"react-transition-group": "^2.3.1",
"redux": "^3.7.2",
"redux-mock-store": "^1.5.1",
"redux-saga": "^1.0.0",
"sharedb-ace": "^1.0.9",
"showdown": "^1.9.0",
"typesafe-actions": "^3.2.1",
"utility-types": "^2.0.0",
"xml2js": "^0.4.19"
},
"devDependencies": {
"@blueprintjs/core": "^3.17.1",
"@blueprintjs/icons": "^3.9.1",
"@blueprintjs/select": "^3.9.0",
"@types/acorn": "^4.0.3",
"@types/classnames": "^2.2.8",
"@types/common-tags": "^1.4.0",
"@types/dotenv": "^6.1.1",
"@types/draft-js": "^0.10.23",
"@types/enzyme": "3.1.17",
"@types/enzyme-adapter-react-16": "^1.0.2",
"@types/estree": "^0.0.39",
"@types/invariant": "^2.2.29",
"@types/jest": "^22.2.3",
"@types/jwt-decode": "^2.2.1",
"@types/lodash": "^4.14.123",
"@types/lz-string": "^1.3.33",
"@types/node": "^12.0.12",
"@types/pixi.js": "^4.7.3",
"@types/query-string": "^5.1.0",
"@types/react": "^16.8.23",
"@types/react-copy-to-clipboard": "^4.2.5",
"@types/react-dom": "^16.8.4",
"@types/react-redux": "^5.0.16",
"@types/react-router": "^4.0.24",
"@types/react-router-dom": "^4.3.3",
"@types/react-router-redux": "^5.0.13",
"@types/react-test-renderer": "^16.0.1",
"@types/react-textarea-autosize": "^4.3.3",
"@types/redux-mock-store": "^0.0.13",
"@types/showdown": "^1.7.5",
"@types/xml2js": "^0.4.3",
"babel-core": "6",
"babel-runtime": "^6.23.0",
"coveralls": "^3.0.1",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.14.0",
"husky": "^1.3.1",
"local-cors-proxy": "^1.0.2",
"prettier": "^1.18.2",
"react-scripts-ts": "^2.16.0",
"react-test-renderer": "^16.3.1",
"redux-saga-test-plan": "^4.0.0-beta.3",
"typescript": "^3.5.2"
}
}