forked from esfiddle/esfiddle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.17 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
{
"name": "es6-fiddle-web",
"description": "Fiddlin' with ECMAScript6.",
"version": "1.0.0",
"homepage": "https://www.esfiddle.net",
"license": "SEE LICENSE IN LICENSE.md",
"maintainers": [
{
"name": "Josh Ghent",
"email": "[email protected]",
"url": "github.com/joshghent"
}
],
"author": {
"name": "Jeff McRiffey",
"email": "[email protected]",
"url": "github.com/jmcriffey"
},
"repository": {
"type": "git",
"url": "https://github.com/esfiddle/esfiddle.git"
},
"dependencies": {
"body-parser": "^1.15.2",
"codemirror": "^5.24.2",
"compression": "^1.6.2",
"connect-flash": "^0.1.1",
"dotenv": "^4.0.0",
"ejs": "^2.5.5",
"express": "^4.14.0",
"express-session": "^1.15.0",
"jshint": "^2.9.4",
"mongodb": "^2.2.5",
"mongoose": "^4.7.7",
"node-fetch": "^1.7.1",
"passport": "^0.3.2",
"passport-github2": "^0.1.10",
"poet": "^2.0.2",
"whatwg-fetch": "^2.0.2"
},
"devDependencies": {
"babel-preset-es2015": "^6.22.0",
"babelify": "^7.3.0",
"chai": "^3.5.0",
"codecov": "1.0.1",
"cross-env": "3.1.4",
"eslint": "^3.13.1",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.0",
"factor-bundle": "^2.5.0",
"grunt": "^1.0.1",
"grunt-assets-inline": "0.1.19",
"grunt-babel": "6.0.0",
"grunt-browser-sync": "2.2.0",
"grunt-browserify": "^5.0.0",
"grunt-cli": "^1.2.0",
"grunt-contrib-imagemin": "^1.0.1",
"grunt-contrib-less": "^1.4.0",
"grunt-contrib-uglify": "^2.0.0",
"grunt-contrib-watch": "^1.0.0",
"grunt-eslint": "^19.0.0",
"grunt-express-server": "0.5.3",
"grunt-githooks": "^0.6.0",
"grunt-inline": "0.3.6",
"grunt-jscs": "^3.0.1",
"grunt-lesslint": "^3.2.0",
"grunt-rollup": "^1.0.1",
"istanbul": "0.4.5",
"load-grunt-tasks": "^3.5.2",
"mocha": "^3.2.0",
"supertest": "^3.0.0"
},
"scripts": {
"test": "grunt test && npm run test-node",
"test-node": "mocha test/*.test.js",
"prestart": "",
"start": "grunt dev",
"build": "grunt build"
}
}