-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
65 lines (65 loc) · 1.95 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
{
"name": "FrontEndSeed",
"version": "2.0.0",
"description": "This project is a default front end start point. Made for LemonDigits.com fr use on client projects.",
"main": "entrypoint.js",
"scripts": {
"start": "concurrently 'node entrypoint.js' 'grunt watch'",
"dev": "concurrently 'nodemon entrypoint.js' 'grunt watch'",
"postinstall": "bower install && grunt -v && babel --optional runtime -d dist/ app/",
"lint": "eslint app/",
"build": "babel --optional runtime -d dist/ app/",
"selenium-server": "selenium-standalone install && selenium-standalone start",
"phantomjs": "phantomjs",
"test": "concurrently --raw 'npm start' './test/run.js'"
},
"engines": {
"node": "5.0.0"
},
"author": "",
"license": "",
"dependencies": {
"babel-cli": "^6.6.5",
"babel-preset-es2015": "^6.3.13",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.7.2",
"body-parser": "^1.15.0",
"bower": "^1.6.3",
"chai": "~3.4.1",
"concurrently": "^2.1.0",
"cookie-session": "^1.2.0",
"deepmerge": "~0.2.7",
"express": "^4.13.3",
"glob": "~6.0.1",
"grunt": "~0.4.5",
"grunt-babel": "^6.0.0",
"grunt-cli": "^0.1.13",
"grunt-concurrent": "^2.1.0",
"grunt-contrib-concat": "^0.5.1",
"grunt-contrib-csslint": "^0.5.0",
"grunt-contrib-less": "^1.1.0",
"grunt-contrib-watch": "~0.6.1",
"grunt-nodemon": "^0.4.1",
"grunt-notify": "^0.4.3",
"less-plugin-autoprefix": "^1.5.1",
"less-plugin-clean-css": "^1.5.1",
"load-grunt-config": "^0.19.1",
"lodash": "^4.14.0",
"marked": "^0.3.5",
"mocha": "2.3.3",
"nodemon": "^1.10.0",
"phantomjs": "1.9.19",
"q": "~1.4.1",
"raven": "^0.11.0",
"request": "^2.69.0",
"selenium-standalone": "4.8.0",
"time-grunt": "^1.3.0",
"twig": "^0.8.2",
"webdriverio": "~3.4.0",
"yadda": "~0.16.0"
},
"devDependencies": {
"eslint": "^2.4.0",
"eslint-config-airbnb": "^6.2.0"
}
}