forked from source-academy/frontend
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
110 lines (110 loc) · 3.77 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
{
"private": true,
"name": "cadet-frontend",
"version": "1.0.21",
"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}'; prettier --write --parser scss 'src/**/*.scss'",
"format:ci": "prettier --list-different 'src/**/*.{ts,tsx}' && prettier --list-different --parser scss 'src/**/*.scss'",
"start-js": "rm -r coverage; BROWSER=none PORT=80 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"
},
"husky": {
"hooks": {
"pre-push": "bash scripts/test.sh"
}
},
"dependencies": {
"acorn": "^5.7.1",
"ag-grid": "^18.0.1",
"ag-grid-react": "^18.0.0",
"astring": "^1.3.0",
"common-tags": "^1.7.2",
"draft-js": "^0.10.5",
"flexboxgrid": "^6.3.1",
"flexboxgrid-helpers": "^1.1.3",
"js-slang": "0.1.19",
"lodash": "^4.17.11",
"lz-string": "^1.4.4",
"moment": "^2.22.2",
"node-sass-chokidar": "^1.3.4",
"normalize.css": "^8.0.0",
"npm-run-all": "^4.1.3",
"pixi-filters": "^2.6.1",
"pixi.js": "^4.8.0",
"query-string": "^6.1.0",
"re-resizable": "^4.4.8",
"react": "^16.6.0",
"react-ace": "^6.2.0",
"react-copy-to-clipboard": "^5.0.1",
"react-dom": "^16.3.1",
"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-transition-group": "^2.3.1",
"redux": "^3.7.2",
"redux-mock-store": "^1.5.1",
"redux-saga": "^0.15.6",
"showdown": "^1.8.7",
"typesafe-actions": "^3.0.0",
"utility-types": "^2.0.0"
},
"devDependencies": {
"@blueprintjs/core": "^2.1.1",
"@blueprintjs/icons": "^2.2.1",
"@blueprintjs/select": "^2.0.1",
"@types/acorn": "^4.0.3",
"@types/classnames": "^2.2.3",
"@types/common-tags": "^1.4.0",
"@types/dotenv": "^4.0.3",
"@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/lodash": "^4.14.110",
"@types/lz-string": "^1.3.32",
"@types/node": "^9.6.5",
"@types/pixi.js": "^4.7.3",
"@types/query-string": "^5.1.0",
"@types/react": "^16.3.10",
"@types/react-copy-to-clipboard": "^4.2.5",
"@types/react-dom": "^16.0.5",
"@types/react-redux": "^5.0.16",
"@types/react-router": "^4.0.24",
"@types/react-router-dom": "^4.2.6",
"@types/react-router-redux": "^5.0.13",
"@types/react-test-renderer": "^16.0.1",
"@types/redux-mock-store": "^0.0.13",
"@types/showdown": "^1.7.5",
"babel-core": "6",
"babel-runtime": "^6.23.0",
"coveralls": "^3.0.1",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"husky": "^1.0.0-rc.6",
"prettier": "^1.12.0",
"react-scripts-ts": "^2.16.0",
"react-test-renderer": "^16.3.1",
"typescript": "^2.8.1"
}
}