-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
51 lines (51 loc) · 1.46 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
{
"name": "ReactTimerApp",
"version": "1.0.0",
"description": "A timer app written in reactJs.",
"main": "index.js",
"repository": "https://github.com/ankibalyan/ReactTimer.git",
"author": "Ankit Kumar <[email protected]>",
"license": "MIT",
"scripts": {
"build": "node_modules/.bin/webpack",
"start": "node server.js",
"test": "node_modules/.bin/karma start",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"dependencies": {
"express": "^4.14.1",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"react-router": "^3.0.2"
},
"devDependencies": {
"babel-core": "^6.23.1",
"babel-jest": "^18.0.0",
"babel-loader": "^6.3.1",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.23.0",
"compression-webpack-plugin": "^0.3.2",
"css-loader": "^0.26.1",
"enzyme": "^2.7.1",
"expect": "^1.20.2",
"foundation-sites": "^6.3.0",
"jest": "^18.1.0",
"jquery": "^3.1.1",
"karma": "^1.4.1",
"karma-chrome-launcher": "^2.0.0",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.2",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^2.0.2",
"mocha": "^3.2.0",
"node-sass": "^4.5.0",
"react-addons-test-utils": "^15.4.2",
"react-test-renderer": "^15.4.2",
"sass-loader": "^6.0.0",
"script-loader": "^0.7.0",
"style-loader": "^0.13.1",
"webpack": "^2.2.1",
"@kadira/storybook": "^2.21.0"
}
}