-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.52 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
{
"name": "bits",
"version": "1.0.0",
"description": "",
"scripts": {
"start": "webpack-dev-server",
"server": "node server/server.js",
"push": "npm run build && git add -A && git commit -m 'build' && git push",
"build": "NODE_ENV=production webpack -p",
"eslint": "eslint ./src",
"eslint-fix": "eslint --fix ./src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tsvetta/bits.git"
},
"author": "Tatyana Tsvetkova <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/tsvetta/bits/issues"
},
"private": true,
"workspaces": [
"src/bits/*"
],
"devDependencies": {
"babel": "^6.23.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-react": "^6.24.1",
"css-loader": "^0.28.10",
"eslint": "^4.18.1",
"eslint-plugin-react": "^7.7.0",
"style-loader": "^0.20.2",
"webpack": "^3.11.0",
"webpack-cli": "^2.0.8",
"webpack-dev-server": "^3.0.0"
},
"dependencies": {
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-env": "^1.6.1",
"classnames": "^2.2.5",
"clean-webpack-plugin": "^0.1.18",
"express": "^4.16.2",
"file-loader": "^1.1.9",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^2.30.1",
"postcss-cssnext": "^3.1.0",
"postcss-loader": "^2.1.0",
"prop-types": "^15.6.1",
"ramda": "^0.25.0",
"react": "^16.2.0",
"react-custom-scrollbars": "^4.2.1",
"react-dom": "^16.2.0",
"react-router-dom": "^4.2.2"
}
}