-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
35 lines (35 loc) · 1.11 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
{
"name": "react-virtual-list",
"version": "1.0.0",
"description": "Virtual list in React",
"scripts": {
"dev": "webpack-dev-server --hot --inline --progress --colors --config demo/demo.dev.webpack.config.js",
"build:demo": "webpack -p --progress --colors --config demo/demo.prod.webpack.config.js",
"build:app": "webpack -p --progress --colors --config webpack.config.js",
"test": "karma start",
"jscs": "./node_modules/.bin/jscs src/*.js demo/src/*.js test/specs/*.js",
"clean": "rm -rf ./build; rm -rf ./demo/build"
},
"author": "mirz <[email protected]>",
"license": "MIT",
"dependencies": {
"react": "^15.0.0",
"react-dom": "^15.0.0"
},
"devDependencies": {
"babel-core": "^6.7.4",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"css-loader": "^0.23.1",
"jasmine-core": "^2.4.1",
"jscs": "^3.0.3",
"karma": "^0.13.15",
"karma-chrome-launcher": "^0.2.1",
"karma-jasmine": "^0.3.6",
"karma-webpack": "^1.7.0",
"lodash": "^4.6.1",
"style-loader": "^0.13.1",
"webpack": "^1.12.14"
}
}