This repository was archived by the owner on Sep 23, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 4.11 KB
/
package.json
File metadata and controls
103 lines (103 loc) · 4.11 KB
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
101
102
103
{
"name": "laksa",
"private": true,
"workspaces": [
"packages/*"
],
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-class-properties": "7.0.0",
"@babel/plugin-proposal-decorators": "7.0.0",
"@babel/plugin-proposal-do-expressions": "7.0.0",
"@babel/plugin-proposal-export-default-from": "7.0.0",
"@babel/plugin-proposal-export-namespace-from": "7.0.0",
"@babel/plugin-proposal-function-sent": "7.0.0",
"@babel/plugin-proposal-json-strings": "7.0.0",
"@babel/plugin-proposal-logical-assignment-operators": "7.0.0",
"@babel/plugin-proposal-nullish-coalescing-operator": "7.0.0",
"@babel/plugin-proposal-numeric-separator": "7.0.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/plugin-proposal-optional-chaining": "7.0.0",
"@babel/plugin-proposal-pipeline-operator": "7.0.0",
"@babel/plugin-proposal-throw-expressions": "7.0.0",
"@babel/plugin-syntax-dynamic-import": "7.0.0",
"@babel/plugin-syntax-import-meta": "7.0.0",
"@babel/plugin-transform-runtime": "^7.0.0",
"@babel/polyfill": "7.0.0",
"@babel/preset-env": "7.0.0",
"@babel/preset-typescript": "^7.0.0",
"@babel/runtime": "^7.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^8.2.6",
"babel-jest": "^23.6.0",
"babel-loader": "^8.0.2",
"babel-plugin-add-module-exports": "^0.3.3",
"camelcase": "^5.0.0",
"cross-env": "^5.2.0",
"del": "^3.0.0",
"eslint": "^5.5.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.11.1",
"fbjs-scripts": "^0.8.3",
"gulp": "^4.0.0",
"jest": "^23.6.0",
"jest-fetch-mock": "^2.1.0",
"jest-json-schema": "^2.0.1",
"jsdoc": "^3.5.5",
"lerna": "^3.2.1",
"natives": "1.1.6",
"path": "^0.12.7",
"regenerator-runtime": "^0.12.1",
"rollup": "^0.65.1",
"rollup-plugin-babel": "^4.0.3",
"rollup-plugin-commonjs": "^9.1.6",
"rollup-plugin-json": "^3.1.0",
"rollup-plugin-license": "^0.8.1",
"rollup-plugin-node-resolve": "^3.4.0",
"rollup-plugin-prettier": "^0.4.0",
"rollup-plugin-replace": "^2.0.0",
"rollup-plugin-strip-banner": "^0.2.0",
"uglifyjs-webpack-plugin": "^1.3.0",
"vuepress-jsdoc": "^1.6.0",
"webpack": "^4.17.2",
"webpack-command": "^0.4.1",
"webpack-node-externals": "^1.7.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FireStack-Lab/Laksa.git"
},
"scripts": {
"test:debug": "cross-env NODE_ENV=test node --inspect-brk node_modules/.bin/jest --runInBand --config ./scripts/jest/jest.src.config.js --silent --no-cache",
"test:src": "cross-env NODE_ENV=test jest --config ./scripts/jest/jest.src.config.js --silent --runInBand --no-cache",
"test:node": "cross-env NODE_ENV=development jest --config ./scripts/jest/jest.src.config.js --silent --runInBand --no-cache",
"test:lib": "cross-env NODE_ENV=production jest --config ./scripts/jest/jest.src.config.js --silent --runInBand --no-cache",
"test:all": "yarn packages:bundle && yarn test:src && yarn test:node && yarn test:lib",
"packages:cleanBrowser": "gulp cleanBrowser",
"packages:cleanServer": "gulp cleanServer",
"packages:cleanDocs": "gulp cleanDocs",
"packages:clean": "gulp cleanBrowser && gulp cleanServer && gulp cleanDocs",
"packages:bundleBrowser": "yarn packages:cleanBrowser && rollup --c scripts/rollup/bundleBrowser.js",
"packages:bundleServer": "yarn packages:cleanDocs && yarn packages:cleanServer && rollup --c scripts/rollup/bundleServer.js",
"packages:bundle": "yarn packages:bundleBrowser && yarn packages:bundleServer",
"commit": "yarn packages:bundle && git add .&&git commit",
"dist": "yarn packages:bundle && rm -rf dist && cross-env NODE_ENV=production webpack --config webpack.config.js"
},
"keywords": [
"laksa",
"web3",
"zilliqa",
"ethereum",
"javascript"
],
"author": "neeboo",
"license": "MIT",
"jest": {
"coverageDirectory": "./coverage/",
"collectCoverage": true
},
"dependencies": {}
}