-
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.46 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.46 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": "functional-javascript-sandbox",
"version": "0.0.1",
"license": "MIT",
"main": "src/index.js",
"scripts": {
"type": "flow",
"lint": "eslint src test",
"spec": "NODE_PATH=src mocha test/**/*.spec.js",
"start": "babel-node src/index.js",
"test": "npm run type && npm run lint && npm run spec",
"test:watch": "npm run spec -- --watch"
},
"dependencies": {
"axios": "^0.15.3",
"dotenv": "^4.0.0",
"jaconv": "^1.0.0",
"mongodb": "^2.2.21",
"ramda": "^0.23.0"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-eslint": "^7.1.1",
"babel-plugin-espower": "^2.3.2",
"babel-plugin-syntax-trailing-function-commas": "^6.20.0",
"babel-plugin-transform-async-to-generator": "^6.16.0",
"babel-plugin-transform-class-properties": "^6.19.0",
"babel-plugin-transform-flow-strip-types": "^6.21.0",
"babel-plugin-transform-object-rest-spread": "^6.20.2",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-es2016": "^6.16.0",
"babel-preset-react": "^6.16.0",
"eslint": "^3.13.1",
"eslint-config-airbnb": "^14.0.0",
"eslint-import-resolver-node": "^0.3.0",
"eslint-plugin-flowtype": "^2.30.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^3.0.2",
"eslint-plugin-react": "^6.9.0",
"flow-bin": "^0.36.0",
"mocha": "^3.2.0",
"power-assert": "^1.4.2"
},
"engines": {
"node": "6.9.4"
}
}