forked from stellarterm/stellarterm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 2.16 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
88
89
90
91
92
{
"name": "stellar-terminal",
"version": "0.0.1",
"author": "Iris Li",
"license": "Apache-2.0",
"private": true,
"scripts": {
"test": "./test.sh",
"setup": "yarn install",
"start": "./node_modules/.bin/gulp watch",
"directory/": "npm run directory",
"directory": "cd directory && ./checkBuild.sh;",
"lint": "./node_modules/.bin/eslint .",
"lint-fix": "./node_modules/.bin/eslint . --fix",
"hash": "cd dist; openssl dgst -sha256 index.html; openssl dgst -sha256 ../directory/directory.json",
"production": "NODE_ENV=production; ./node_modules/.bin/gulp production"
},
"dependencies": {
"babelify": "7.3.0",
"bignumber.js": "4.1.0",
"gulp-sass": "3.1.0",
"gulp-useref": "3.1.4",
"lodash": "4.17.5",
"prop-types": "15.6.0"
},
"devDependencies": {
"babel-plugin-transform-runtime": "6.23.0",
"babel-preset-env": "1.6.1",
"babel-preset-react": "6.24.1",
"browser-sync": "2.23.6",
"browserify": "16.0.0",
"del": "0.1.3",
"eslint": "3.19.0",
"eslint-config-airbnb": "14.1.0",
"eslint-plugin-import": "2.8.0",
"eslint-plugin-jsx-a11y": "3.0.2",
"eslint-plugin-react": "6.10.3",
"gulp": "3.9.1",
"gulp-autoprefixer": "3.1.1",
"gulp-inline-source": "3.1.0",
"gulp-uglify": "2.1.2",
"react": "16.2.0",
"react-dom": "16.2.0",
"run-sequence": "1.2.2",
"vinyl-source-stream": "1.1.2",
"watchify": "3.10.0"
},
"engines": {
"node": ">=7.4.0"
},
"jest": {
"transform": {
".*": "<rootDir>/preprocessor.js"
},
"unmockedModulePathPatterns": [
"<rootDir>/node_modules/react"
]
},
"browserify": {
"extension": [
"jsx"
],
"transform": [
[
"babelify",
{
"ignore": [
"bower_components"
],
"plugins": [
"transform-runtime"
],
"presets": [
"env",
"react"
]
}
]
]
},
"browser": {},
"eslintConfig": {
"extends": "airbnb",
"globals": {
"StellarSdk": true
},
"rules": {
"new-cap": "warn",
"no-underscore-dangle": "off"
}
}
}