-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.48 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.48 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
{
"name": "custom-lexer",
"version": "1.0.0",
"main": "index.js",
"repository": {
"url": "https://github.com/andrewdacenko/custom-lexer.git",
"type": "git"
},
"author": "Andrew Dacenko <a.s.dvornik@gmail.com>",
"license": "MIT",
"scripts": {
"start": "webpack-dev-server",
"build": "NODE_ENV=production webpack",
"deploy-demo": "git push origin :gh-pages && git subtree push --prefix dist origin gh-pages",
"test": "mocha --require babel-polyfill --compilers js:babel-register src/**/*.spec.js",
"tdd": "mocha --require babel-polyfill --compilers js:babel-register -w src/**/*.spec.js"
},
"dependencies": {
"@reactivex/rxjs": "^5.0.1",
"archy": "^1.0.0",
"material-ui": "^0.16.4",
"react": "^15.4.1",
"react-dom": "^15.4.1",
"react-tap-event-plugin": "^2.0.1"
},
"devDependencies": {
"babel": "^6.5.2",
"babel-core": "^6.18.2",
"babel-loader": "^6.2.8",
"babel-polyfill": "^6.16.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-2": "^6.18.0",
"babel-register": "^6.18.0",
"chai": "^3.5.0",
"css-loader": "^0.23.1",
"html-webpack-plugin": "^2.24.1",
"html-webpack-template": "^5.4.1",
"mocha": "^3.2.0",
"postcss-loader": "^0.9.1",
"react-hot-loader": "^3.0.0-beta.6",
"sinon": "^1.17.6",
"sinon-chai": "^2.8.0",
"style-loader": "^0.13.1",
"webpack": "^2.1.0-beta.27",
"webpack-dev-server": "^2.1.0-beta.12"
}
}