forked from stellarterm/stellarterm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
100 lines (100 loc) · 2.43 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
93
94
95
96
97
98
99
100
{
"name": "stellar-terminal",
"version": "0.0.1",
"author": "Iris Li",
"license": "Apache-2.0",
"private": true,
"scripts": {
"test": "./test.sh",
"setup": "npm install && ./node_modules/.bin/bower 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.0.0",
"bluebird": "^3.5.1",
"gulp-sass": "^3.1.0",
"lodash": "^4.17.4",
"mkdirp": "^0.5.1",
"prop-types": "^15.5.10",
"react-select": "^1.0.1"
},
"devDependencies": {
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.16.0",
"browser-sync": "latest",
"browserify": "latest",
"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-bower": "0.0.6",
"gulp-exit": "0.0.2",
"gulp-inline-source": "^3.0.0",
"gulp-load-plugins": "~0.7.0",
"gulp-uglify": "^2.0.0",
"gulp-util": "~3.0.1",
"jest-cli": "^18.1.0",
"puppeteer": "^0.12.0",
"react": "latest",
"react-dom": "latest",
"run-sequence": "^1.2.2",
"vinyl-source-stream": "^1.1.2",
"watchify": "^3.8.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"
}
}
}