forked from evinism/lambda-explorer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.11 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.11 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
{
"name": "lambda-explorer",
"version": "0.0.1",
"description": "exploration in webdev",
"repository": "https://github.com/evinism/lambda-explorer",
"main": "index.js",
"scripts": {
"watch": "webpack --watch",
"dev": "webpack-dev-server --port 8082 --content-base public",
"webpack": "webpack",
"test": "mocha -r ts-node/register -r babel-core/register src/util/testhelper.js"
},
"author": "evin",
"license": "MIT",
"devDependencies": {
"awesome-typescript-loader": "^3.1.2",
"babel-core": "^6.24.1",
"babel-loader": "^6.4.1",
"babel-preset-env": "^1.4.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"chai": "^4.0.1",
"mocha": "^3.4.2",
"questy": "^1.1.1",
"ts-node": "^3.0.4",
"typescript": "^2.2.2",
"webpack": "^2.4.1",
"webpack-dev-server": "^2.4.2",
"worker-loader": "^1.0.0"
},
"dependencies": {
"babel-polyfill": "^6.7.4",
"classnames": "^2.2.5",
"http-server": "^0.10.0",
"ramda": "^0.21.0",
"react": "^15.0.1",
"react-dom": "^15.0.1"
}
}