-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
74 lines (74 loc) · 2.18 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "react-scifi",
"version": "0.1.0-alpha",
"description": "Sci-fi UI-kit for React",
"main": "./lib/react-scifi.js",
"author": {
"name": "Klaus Nygård",
"email": "klaus.nygard@gmail.com",
"url": "http://klausnygard.fi"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/nygardk/react-scifi"
},
"keywords": [
"react",
"component",
"react-component",
"scifi",
"ui",
"ui-kit"
],
"scripts": {
"start": "npm run run-demos",
"build-src": "webpack -p --config webpack.config.js --progress --colors",
"build": "NODE_ENV=production npm run build-src && npm run build-demos",
"run-demos": "NODE_ENV=development webpack-dev-server --hot --inline --config webpack.demos.config.js --content-base demos/ --progress --colors",
"build-demos": "NODE_ENV=production webpack -p --config webpack.demos.config.js",
"lint-fix": "eslint --fix --ext .js,.jsx --ignore-pattern bundle.js ./demos"
},
"peerDependencies": {
"prop-types": "^15.6.0",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-motion": "^0.5.2"
},
"dependencies": {
"classnames": "^2.2.5",
"lodash.times": "^4.3.2",
"onecolor": "^3.0.4"
},
"devDependencies": {
"babel-core": "6.26.0",
"babel-eslint": "8.0.1",
"babel-loader": "7.1.2",
"babel-plugin-transform-class-properties": "6.18.0",
"babel-plugin-transform-runtime": "6.15.0",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "6.24.1",
"babel-preset-react": "6.24.1",
"babel-preset-stage-0": "6.24.1",
"css-loader": "0.28.7",
"eslint": "4.9.0",
"eslint-config-airbnb": "16.0.0",
"eslint-loader": "1.9.0",
"eslint-plugin-babel": "4.1.2",
"eslint-plugin-import": "2.7.0",
"eslint-plugin-jsx-a11y": "6.0.2",
"eslint-plugin-react": "7.4.0",
"extract-text-webpack-plugin": "3.0.1",
"file-loader": "1.1.5",
"prop-types": "15.6.0",
"react": "16.0.0",
"react-dom": "16.0.0",
"react-hot-loader": "3.0.0",
"react-motion": "0.5.2",
"style-loader": "0.19.0",
"stylus": "0.54.5",
"stylus-loader": "3.0.1",
"webpack": "3.7.1",
"webpack-dev-server": "2.9.1"
}
}