This repository has been archived by the owner on Apr 22, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.6 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
{
"name": "test-proj",
"version": "1.0.0",
"description": "test project",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server --progress --inline --hot",
"dev": "SET NODE_ENV=development && npm run start",
"prod": "SET NODE_ENV=production && webpack",
"lint": "eslint ./src",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rainman161/test.git"
},
"keywords": [
"test",
"study"
],
"author": "Yaroslav",
"license": "ISC",
"bugs": {
"url": "https://github.com/rainman161/test/issues"
},
"homepage": "https://github.com/rainman161/test#readme",
"devDependencies": {
"babel-core": "^6.13.2",
"babel-eslint": "^6.1.2",
"babel-loader": "^6.2.4",
"babel-plugin-transform-runtime": "^6.12.0",
"babel-polyfill": "^6.13.0",
"babel-preset-es2015": "^6.13.2",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-0": "^6.5.0",
"css-loader": "^0.23.1",
"eslint": "^3.3.0",
"eslint-plugin-react": "^6.1.0",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.9.0",
"less": "^2.7.2",
"less-loader": "^4.0.4",
"react-hot-loader": "^1.3.0",
"style-loader": "^0.18.2",
"url-loader": "^0.5.7",
"webpack": "^1.13.1",
"webpack-dev-server": "^1.14.1"
},
"dependencies": {
"axios": "^0.16.2",
"less": "^2.7.2",
"less-loader": "^4.0.4",
"prop-types": "^15.5.10",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-redux": "^5.0.5",
"react-router": "^4.1.1",
"redux": "^3.7.1"
}
}