-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
80 lines (80 loc) · 2.21 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
75
76
77
78
79
80
{
"name": "react-widgets",
"version": "1.0.0",
"private": true,
"engines": {
"node": ">=6.0.0"
},
"scripts": {
"build": "rimraf build public/_assets && webpack --config tools/webpack-production.config.js --progress --colors --bail",
"lint": "eslint ./src/",
"dev": "node tools/dev-server.js",
"start": "node build/server/server.js",
"test": "jest"
},
"description": "Project template for building isomorphic widgets using reactjs",
"main": "index.js",
"author": "Bogdan Savluk <[email protected]>",
"license": "MIT",
"devDependencies": {
"autoprefixer": "^7.1.3",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-jest": "^21.0.2",
"babel-loader": "^7.1.2",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"css-loader": "^0.28.7",
"eslint": "^4.6.0",
"eslint-config-airbnb": "^15.1.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^5.0.3",
"eslint-plugin-react": "^7.3.0",
"extract-text-webpack-plugin": "^3.0.0",
"file-loader": "^0.11.2",
"html-loader": "^0.5.1",
"jest": "^21.0.2",
"loader-utils": "^1.1.0",
"node-sass": "^4.5.3",
"nodemon": "^1.9.2",
"null-loader": "^0.1.0",
"postcss-loader": "^2.0.6",
"react-hot-loader": "^1.3.1",
"react-proxy-loader": "^0.3.5",
"rimraf": "^2.6.1",
"sass-loader": "^6.0.6",
"source-map-support": "^0.4.18",
"style-loader": "^0.18.2",
"url-loader": "^0.5.9",
"webpack": "^3.5.5",
"webpack-dev-server": "^2.7.1"
},
"dependencies": {
"axios": "^0.16.2",
"babel-runtime": "^6.26.0",
"body-parser": "^1.17.2",
"bootstrap-sass": "^3.3.6",
"classnames": "^2.2.3",
"debug": "^3.0.1",
"di1": "^0.1.5",
"dotenv": "^4.0.0",
"ejs": "^2.5.7",
"express": "^4.15.4",
"morgan": "^1.6.1",
"prop-types": "^15.5.10",
"raf": "^3.3.2",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"router1": "^0.6.1",
"router1-react": "^0.7.1",
"rx-react-container": "^0.3.0",
"rxjs": "^5.4.3"
},
"jest": {
"roots": [
"src"
]
}
}