-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.52 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
{
"name": "@connectv/jss-theme",
"version": "0.3.0",
"description": "jss-based themes for connective html",
"main": "dist/es5/index.js",
"module": "dist/es6/index.js",
"types": "dist/es6/index.d.ts",
"files": [
"dist/es6",
"dist/es5",
"external"
],
"scripts": {
"start": "ts-node samples",
"webpack": "webpack-dev-server --config ./conf/webpack/dev.conf.ts",
"test": "echo \"Error: no test specified\" && exit 1",
"build-es5": "tsc -p conf/typescript/es5.json",
"build-es6": "tsc -p conf/typescript/es6.json",
"build": "npm run build-es5 && npm run build-es6"
},
"sideEffects": false,
"repository": {
"type": "git",
"url": "git+https://github.com/CONNECT-platform/connective-jss-theme.git"
},
"author": "Eugene Ghanizadeh Khoub <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/CONNECT-platform/connective-jss-theme/issues"
},
"homepage": "https://github.com/CONNECT-platform/connective-jss-theme#readme",
"dependencies": {
"@connectv/html": "^0.2.6",
"@connectv/sdh": "^0.3.0",
"jss": "^10.1.1",
"rxline": "^0.9.2"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"@types/node": "^12.12.31",
"@types/webpack": "^4.41.8",
"html-webpack-plugin": "^4.0.2",
"ts-loader": "^6.2.2",
"ts-node": "^8.8.1",
"typescript": "^3.8.3",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.11.0",
"webpack-merge": "^4.2.2"
}
}