-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
87 lines (87 loc) · 2.68 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
81
82
83
84
85
86
87
{
"name": "Bitshares-Template",
"version": "0.1.0",
"description": "Simple wallet interface for graphene based blockchains (Bishares, Muse..)",
"homepage": "https://github.com/svk31/bitshares-wallet-template",
"author": "Sigve Kvalsvik <[email protected]> (https://github.com/svk31)",
"license": "LicenseRef-LICENSE",
"engines": {
"node": ">=5.0.0",
"npm": ">=3.0.0"
},
"repository": {
"type": "git",
"url": "git://github.com/svk31/bitshares-wallet-template"
},
"scripts": {
"profile-dev": "webpack --config conf/webpack-dev.js --profile --json > stats-dev.json",
"profile-build": "NODE_ENV=production webpack --config conf/webpack-prod.js --profile --json > stats-prod.json",
"profile-nougly": "NODE_ENV=production webpack --config conf/webpack-prod-nougly.js.config.js --env.prod --env.noUgly --profile --json > stats-prod-nougly.json",
"start": "node server.js",
"build": "NODE_ENV=production webpack --config conf/webpack-prod.js --progress --display-error-details"
},
"dependencies": {
"graphenejs-lib": "^0.4.0",
"graphenejs-ws": "^0.1.0",
"react": "^15.1.0",
"react-dom": "^15.1.0",
"react-router": "^2.4.1"
},
"devDependencies": {
"babel-core": "^6.9.1",
"babel-eslint": "^6.0.4",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"clean-webpack-plugin": "^0.1.9",
"css-loader": "^0.23.1",
"es6-promise": "^3.2.1",
"eslint": "^2.11.1",
"eslint-plugin-react": "^5.1.1",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.8.5",
"git-rev-sync": "^1.6.0",
"json-loader": "^0.5.4",
"mocha": "^2.5.3",
"node-sass": "^3.7.0",
"postcss-loader": "^0.9.1",
"react-hot-loader": "^1.3.0",
"react-transform-catch-errors": "^1.0.0",
"redbox-react": "^1.2.3",
"remarkable-loader": "^0.1.0",
"sass-loader": "^3.2.0",
"script-loader": "^0.6.1",
"style-loader": "^0.13.1",
"svg-inline-loader": "^0.3.0",
"svgo-loader": "^1.1.0",
"url-loader": "^0.5.6",
"webpack": "^1.13.1",
"webpack-dev-server": "^1.14.1"
},
"jest": {
"scriptPreprocessor": "<rootDir>/__tests__/jest-preprocessor.js",
"testPathDirs": [
"<rootDir>/__tests__"
],
"unmockedModulePathPatterns": [
"<rootDir>/node_modules/react",
"<rootDir>/node_modules/tcomb",
"<rootDir>/node_modules/immutable"
],
"moduleFileExtensions": [
"js",
"jsx",
"json"
],
"testFileExtensions": [
"js",
"jsx"
],
"testPathIgnorePatterns": [
"/jest-preprocessor.js",
"/node_modules/",
"/utils/"
]
}
}