forked from dagolap/ecmascript-workshop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.28 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
{
"name": "ecmascript-workshop",
"version": "0.0.1",
"description": "Code to be used during ECMAScript workshop",
"scripts": {
"test": "karma start ./config/karma.conf.js",
"check-updates": "npm-check-updates -u",
"start": "npm run serve | npm run dev",
"serve": "./node_modules/.bin/http-server -p 8080",
"dev": "webpack-dev-server --content-base src/wish-list-app/ --progress --colors --inline --hot --port 8090"
},
"author": "Bouvet Nord",
"license": "MIT",
"devDependencies": {
"babel": "5.8.20",
"babel-core": "5.8.20",
"babel-eslint": "4.1.0",
"babel-loader": "5.3.2",
"chai": "3.2.0",
"eslint": "1.2.1",
"eslint-loader": "1.0.0",
"eslint-plugin-react": "3.3.0",
"http-server": "^0.8.5",
"karma": "0.13.6",
"karma-chai": "0.1.0",
"karma-html-reporter": "0.2.6",
"karma-mocha": "0.2.0",
"karma-phantomjs-launcher": "0.2.0",
"karma-sinon": "1.0.4",
"karma-spec-reporter": "0.0.20",
"karma-webpack": "1.7.0",
"mocha": "2.2.5",
"npm-check-updates": "2.0.4",
"phantomjs": "1.9.17",
"phantomjs-polyfill": "0.0.1",
"sinon": "1.15.4",
"sinon-chai": "2.8.0",
"underscore": "1.8.3",
"underscore.string": "3.1.1",
"webpack": "1.10.5",
"webpack-dev-server": "^1.14.0"
}
}