-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
135 lines (135 loc) · 3.63 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
{
"name": "daostack-vanille",
"version": "0.0.0-alpha.4",
"description": "Creating DAOs for a Collective Intelligence",
"main": "dist/app.bundle.js",
"repository": {
"url": "git+ssh://[email protected]/daostack/Vanille.git",
"type": "git"
},
"author": "DAOstack",
"license": "GPL-3.0",
"engines": {
"node": ">= 9.4.0"
},
"scripts": {
"start": "nps",
"test": "nps test"
},
"bugs": {
"url": "https://github.com/daostack/vanille/issues"
},
"jest": {
"modulePaths": [
"<rootDir>/src",
"<rootDir>/node_modules"
],
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"transform": {
"^.+\\.(ts|tsx)$": "<rootDir>/node_modules/ts-jest/preprocessor.js",
"^.+\\.(js|jsx)$": "babel-jest",
"^.+\\.scss": "jest-css-modules"
},
"transformIgnorePatterns": [
"<rootDir>/node_modules/(?!(@daostack/arc.js)/)"
],
"testRegex": "\\.spec\\.(ts|js)x?$",
"setupFiles": [
"<rootDir>/test/jest-pretest.ts"
],
"testEnvironment": "node",
"collectCoverage": false,
"collectCoverageFrom": [
"src/**/*.{js,ts}",
"!**/*.spec.{js,ts}",
"!**/node_modules/**",
"!**/test/**"
],
"coverageDirectory": "<rootDir>/test/coverage-jest",
"coverageReporters": [
"json",
"lcov",
"text",
"html"
]
},
"devDependencies": {
"@types/bootstrap": "^4.1.0",
"@types/jest": "^22.2.2",
"@types/jquery": "^3.2.13",
"@types/node": "8.0.14",
"@types/webpack": "^4.1.3",
"aurelia-loader-nodejs": "^1.0.1",
"aurelia-pal-nodejs": "^1.0.0-beta.3.0.0",
"aurelia-protractor-plugin": "^1.0.6",
"aurelia-testing": "^1.0.0-beta.4.0.0",
"aurelia-webpack-plugin": "2.0.0-rc.2",
"autoprefixer": "7.1.2",
"awesome-typescript-loader": "^3.2.3",
"babel-jest": "^22.4.1",
"babel-plugin-syntax-async-functions": "^6.13.0",
"babel-preset-env": "^1.6.1",
"compression-webpack-plugin": "^1.1.3",
"copy-webpack-plugin": "4.0.1",
"cross-env": "5.0.1",
"css-loader": "0.28.4",
"cwd": "^0.10.0",
"env-variable": "0.0.3",
"expose-loader": "0.7.3",
"extract-text-webpack-plugin": "3.0.0",
"file-loader": "0.11.2",
"html-webpack-plugin": "2.29.0",
"http-server": "0.10.0",
"istanbul-instrumenter-loader": "2.0.0",
"jasmine-core": "2.6.4",
"jest": "^22.4.2",
"jest-css-modules": "^1.1.0",
"json-loader": "0.5.4",
"karma": "1.7.0",
"karma-chrome-launcher": "2.2.0",
"karma-coverage-istanbul-reporter": "1.3.0",
"karma-jasmine": "1.1.0",
"karma-mocha-reporter": "2.2.3",
"karma-webpack": "2.0.4",
"node-sass": "^4.5.3",
"nps": "^5.7.1",
"nps-utils": "^1.5.0",
"path.join": "^1.0.0",
"postcss-loader": "2.0.6",
"protractor": "5.1.2",
"sass-loader": "^6.0.6",
"style-loader": "0.18.2",
"ts-jest": "^22.4.0",
"ts-node": "^5.0.1",
"tslib": "^1.9.0",
"typescript": "2.6.2",
"uglifyjs-webpack-plugin": "^1.2.2",
"url-loader": "0.5.9",
"wait-on": "2.0.2",
"webpack": "^3.10.0",
"webpack-bundle-analyzer": "^2.9.0",
"webpack-dev-server": "^2.11.1"
},
"dependencies": {
"@daostack/arc.js": "0.0.0-alpha.81",
"arrive": "^2.4.1",
"aurelia-bootstrapper": "^2.1.1",
"bluebird": "3.5.0",
"bootstrap": "^4.1.1",
"bootstrap-material-design": "^4.1.1",
"es6-promisify": "^6.0.0",
"ethereumjs-tx": "^1.3.3",
"font-awesome": "^4.7.0",
"jquery": "3.2.1",
"node-waves": "^0.7.6",
"numeral": "^2.0.6",
"popper.js": "^1.14.3",
"rxjs": "^5.5.6",
"snackbarjs": "^1.1.0",
"truffle-contract": "^3.0.1"
}
}