-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
43 lines (43 loc) · 1.32 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": "voicebox-flask",
"version": "0.0.1",
"description": "Web application for predictive text generation",
"scripts": {
"build": "./node_modules/webpack/bin/webpack.js --config webpack.config.js",
"build:watch": "./node_modules/webpack/bin/webpack.js --config webpack.config.js --watch",
"build:production": "./node_modules/webpack/bin/webpack.js --config webpack.config.js -p",
"test": "./node_modules/.bin/karma start karma.conf.js --single-run",
"test:watch": "./node_modules/.bin/karma start karma.conf.js --watch"
},
"repository": {
"type": "git",
"url": "-"
},
"author": "pennetti",
"license": "MIT",
"dependencies": {
"axios": "^0.15.3",
"lodash": "^4.17.4",
"normalize.css": "^5.0.0",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"webpack": "^2.0.0"
},
"devDependencies": {
"babel-core": "^6.21.0",
"babel-loader": "^6.2.10",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"css-loader": "^0.26.2",
"jasmine-core": "^2.5.2",
"karma": "^1.3.0",
"karma-jasmine": "^1.1.0",
"karma-phantomjs-launcher": "^1.0.2",
"karma-webpack": "^2.0.1",
"node-sass": "^4.5.0",
"promise-polyfill": "^6.0.2",
"react-addons-test-utils": "^15.4.2",
"sass-loader": "^6.0.2",
"style-loader": "^0.13.2"
}
}