-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 3.31 KB
/
package.json
File metadata and controls
104 lines (104 loc) · 3.31 KB
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
{
"name": "repl-web",
"description": "Web client project for the EXLcode REPL editor",
"repository": "https://github.com/exlcode/repl-web",
"version": "0.1.0",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server",
"clean": "rimraf dist/*",
"preproduction": "rm -rf tsDist dist",
"production": "npm run preproduction && cross-env npm run clean && webpack --config webpack.production.config.js --progress --profile --colors && npm run production:copy",
"production:copy": "cp -rf assets/* ./dist/",
"tslint": "tslint",
"test": "mocha --compilers js:babel-core/register --recursive ./tests/**/*.js",
"format": "npm run prettier ./app/**/*.ts && npm run prettier ./app/**/*.tsx",
"prettier": "prettier --write --parser=typescript --trailing-comma=none --single-quote --no-semi",
"lint:staged": "lint-staged",
"docker:build": "docker build -t exlcode/repl-web:latest .",
"docker:build": "docker build -t exlcode/repl-web:latest .",
"docker:push": "docker push exlcode/repl-web:latest"
},
"pre-commit": "lint:staged",
"lint-staged": {
"*.ts": [
"npm run prettier",
"tslint",
"git add"
],
"*.tsx": [
"npm run prettier",
"tslint",
"git add"
]
},
"author": "EXL Inc.",
"dependencies": {
"@blueprintjs/core": "^1.21.0",
"axios": "^0.18.0",
"classnames": "^2.2.5",
"cross-env": "^5.0.1",
"diff-match-patch": "^1.0.0",
"freactal": "^1.1.0",
"lodash": "^4.17.4",
"ot-text": "^1.0.1",
"prop-types": "^15.5.10",
"query-string": "^5.0.0",
"react": "^15.6.1",
"react-addons-css-transition-group": "^15.6.0",
"react-dom": "^15.6.1",
"react-hot-loader": "next",
"react-monaco-editor": "0.9.0",
"react-split-pane": "^0.1.63",
"sharedb": "^1.0.0-beta.7",
"styled-components": "^2.1.0",
"uuid": "^3.1.0",
"xterm": "^2.7.0"
},
"devDependencies": {
"@types/classnames": "^2.2.0",
"@types/lodash": "^4.14.68",
"@types/node": "^8.0.6",
"@types/prop-types": "^15.5.1",
"@types/query-string": "^5.0.0",
"@types/react": "^15.0.33",
"@types/react-dom": "^15.5.1",
"@types/react-hot-loader": "^3.0.2",
"@types/react-split-pane": "^0.1.8",
"@types/uuid": "^3.0.0",
"@types/xterm": "^2.0.3",
"awesome-typescript-loader": "^3.2.1",
"babel-cli": "6.24.1",
"babel-core": "6.25.0",
"babel-eslint": "7.2.3",
"babel-loader": "7.1.1",
"babel-plugin-lodash": "^3.2.11",
"babel-preset-es2015": "6.24.1",
"babel-preset-latest-minimal": "^1.1.2",
"babel-preset-react": "6.24.1",
"babel-preset-react-hmre": "1.1.1",
"babel-preset-stage-0": "^6.24.1",
"css-loader": "^0.28.4",
"dotenv": "^4.0.0",
"express": "^4.15.3",
"file-loader": "0.11.2",
"html-webpack-plugin": "^2.29.0",
"lint-staged": "^4.0.0",
"pre-commit": "^1.2.2",
"prettier": "^1.5.2",
"react-addons-test-utils": "15.6.0",
"requirejs": "^2.3.3",
"rimraf": "2.6.1",
"source-map-loader": "^0.2.1",
"style-loader": "^0.18.2",
"tslint": "^5.4.3",
"tslint-config-prettier": "^1.1.0",
"tslint-eslint-rules": "^4.1.1",
"tslint-react": "^3.0.0",
"typescript": "2.3.4",
"url-loader": "0.5.8",
"webpack": "3.0.0",
"webpack-bundle-analyzer": "^2.8.2",
"webpack-dev-server": "2.5.0"
}
}