-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.24 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
{
"name": "achievement-sharing",
"version": "1.0.0",
"description": "",
"scripts": {
"start": "webpack-dev-server --inline --history-api-fallback --port 8888",
"api": "./node_modules/babel-cli/bin/babel-node.js api/app.js",
"build": "./node_modules/webpack/bin/webpack.js -p --config webpack.config.production.js",
"build:crossBrowser": "./node_modules/webpack/bin/webpack.js -p --config webpack.config.cross.browser.js",
"test": "./node_modules/karma/bin/karma start ./karma.conf.js"
},
"repository": "git@https://github.com/gimupop/achievement-sharing.git",
"author": "Keita Yanagawa",
"license": "UNLICENSED",
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.18.2",
"babel-loader": "^6.2.7",
"babel-preset-es2015": "^6.18.0",
"babel-preset-es2015-loose": "^7.0.0",
"express": "^4.14.0",
"morgan":"^1.7.0",
"jasmine-core": "^2.5.2",
"karma": "^1.3.0",
"karma-chrome-launcher": "^2.0.0",
"karma-jasmine": "^1.0.2",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^1.8.0",
"webpack": "^1.13.3",
"webpack-dev-server": "^1.16.2",
"webpack-init": "^0.1.2"
},
"dependencies": {
"babel-preset-stage-1": "^6.16.0",
"body-parser": "^1.15.2"
}
}