-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
100 lines (100 loc) · 2.74 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": "blockchain-choreography",
"version": "1.0.0",
"description": "Tamper proof collaborative modelling of choreograpy models based on distributed ledger technology.",
"keywords": [
"tamper proof",
"collaborative modelling",
"choreograpy models",
"distributed ledger technology",
"ehtereum",
"typescript",
"react",
"dapp"
],
"bugs": {
"url": "https://github.com/bptlab/blockchain-choreography/issues"
},
"author": "bptlab",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/bptlab/blockchain-choreography"
},
"scripts": {
"start": "npm run-script dev",
"sol": "node scripts/clean_build.js",
"build": "cross-env NODE_ENV=production webpack",
"dev": "cross-env NODE_ENV=development webpack-dev-server",
"test": "jest --verbose --coverage",
"lint": "tslint -p tsconfig.json",
"clean": "./node_modules/.bin/rimraf ./build"
},
"jest": {
"collectCoverageFrom": [
"src/**/*.{ts,tsx,js,jsx}"
],
"setupFiles": [
"<rootDir>/config/jest/polyfills.ts"
],
"testMatch": [
"<rootDir>/src/**/__tests__/*.(ts|tsx|js|jsx)",
"<rootDir>/src/**/?(*.)(spec|test).(ts|tsx|js|jsx)"
],
"transform": {
"\\.(ts|tsx)$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json"
],
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/config/jest/file-transform.ts",
"\\.(css|less)$": "identity-obj-proxy"
}
},
"dependencies": {
"bignumber.js": "^4.1.0",
"bluebird": "^3.5.1",
"chor-js": "^0.2.0",
"ethereumjs-util": "^5.1.2",
"raf": "^3.4.0",
"react": "^16.1.0",
"react-dom": "^16.1.0",
"truffle": "^4.1.14",
"truffle-contract": "^3.0.1",
"web3": "^0.20.2"
},
"devDependencies": {
"@types/bignumber.js": "^4.0.3",
"@types/jest": "^21.1.6",
"@types/node": "^8.0.51",
"@types/react": "^16.0.22",
"@types/react-dom": "^16.0.3",
"@types/webpack": "^3.8.1",
"clean-webpack-plugin": "^0.1.17",
"copy-webpack-plugin": "^4.2.0",
"cross-env": "^5.1.1",
"css-loader": "^0.28.7",
"file-loader": "^1.1.5",
"identity-obj-proxy": "^3.0.0",
"jest": "^21.2.1",
"postcss-loader": "^2.0.8",
"rimraf": "^2.6.2",
"source-map-loader": "^0.2.3",
"style-loader": "^0.19.0",
"ts-jest": "^21.2.2",
"ts-loader": "^3.1.1",
"ts-node": "^3.3.0",
"tslint": "^5.8.0",
"tslint-loader": "^3.5.3",
"tslint-react": "^3.2.0",
"typescript": "^2.6.1",
"web3-typescript-typings": "^0.7.2",
"webpack": "^3.8.1",
"webpack-dev-server": "^2.9.4"
}
}