-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.25 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
{
"name": "",
"version": "0.0.1",
"description": "",
"main": "index.js",
"scripts": {
"build": "npm run build:lib && npm run build:umd && npm run build:umd:min",
"build:lib": "babel --presets es2015,stage-0,react src --out-dir lib && sass scss/default.scss lib/style.css",
"build:umd": "webpack --config webpack.config.development.js && sass scss/default.scss dist/style.css",
"build:umd:min": "webpack --config webpack.config.production.js && sass -t compressed scss/default.scss dist/style.css",
"dev": "./node_modules/webpack-dev-server/bin/webpack-dev-server.js --config webpack.config.development.js --progress --colors --port 8090 && node example/server.js",
"lint": "eslint src",
"clean": "rimraf dist lib"
},
"keywords": [
"example"
],
"author": "Jonathan Thomas",
"license": "MIT",
"repository": "",
"dependencies": {
"@oiok/react-tag-select": "^0.1.1",
"autoprefixer": "^6.3.3",
"basecss": "^0.3.2",
"basscss": "^8.0.1",
"lodash": "^4.6.1",
"postcss": "^5.0.19",
"postcss-discard-comments": "^2.0.4",
"postcss-import": "^8.0.2",
"postcss-loader": "^0.8.2"
},
"peerDependencies": {
"react": "^15.0.0-rc.1",
"react-dom": "^15.0.0-rc.1"
},
"devDependencies": {
"babel": "^6.5.2",
"babel-cli": "^6.6.5",
"babel-core": "^6.6.5",
"babel-eslint": "^5.0.0",
"babel-loader": "^6.2.4",
"babel-plugin-react-transform": "^2.0.2",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"css-loader": "^0.23.1",
"eslint": "^1.10.3",
"eslint-config-airbnb": "^0.1.0",
"eslint-plugin-react": "^3.13.1",
"express-urlrewrite": "^1.2.0",
"extract-text-webpack-plugin": "^1.0.1",
"js-dom": "0.0.1",
"jsdom": "^8.1.0",
"mocha": "^2.4.5",
"node-sass": "^3.4.2",
"postcss-scss": "^0.1.7",
"postcss-strip-inline-comments": "^0.1.3",
"react-addons-test-utils": "^0.14.7",
"rimraf": "^2.5.1",
"sass-loader": "^3.1.2",
"sinon": "^1.17.3",
"style-loader": "^0.13.0",
"unexpected": "^10.10.0",
"unexpected-dom": "^3.0.2",
"unexpected-react": "^0.5.2",
"unexpected-sinon": "^10.1.1",
"webpack": "^1.9.4",
"webpack-dev-server": "^1.8.2"
}
}