-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.55 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
{
"name": "stack-icon",
"version": "1.0.0",
"license": "MIT",
"author": {
"name": "Marvin Rudolph",
"email": "info@marvin-rudolph.de"
},
"repository": {
"type": "git",
"url": "https://github.com/MarvinRudolph/stack-icon.git"
},
"main": "dist/bundle.js",
"types": "dist/types/index.d.ts",
"scripts": {
"type-check": "tsc --noEmit",
"type-check:watch": "yarn type-check --watch",
"build:types": "tsc --emitDeclarationOnly",
"build:js": "cross-env TS_NODE_PROJECT=\"tsconfig-webpack.json\" NODE_ENV=production webpack --color",
"build": "npm run build:js && npm run build:types",
"dev": "cross-env TS_NODE_PROJECT=\"tsconfig-webpack.json\" NODE_ENV=development webpack-dev-server --color",
"lint": "eslint . --ext .ts",
"lintfix": "eslint . --ext .ts --fix"
},
"devDependencies": {
"@babel/core": "^7.6.0",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-proposal-object-rest-spread": "^7.5.5",
"@babel/preset-env": "^7.6.0",
"@babel/preset-typescript": "^7.6.0",
"@fullhuman/postcss-purgecss": "^1.2.0",
"@types/gsap": "^1.20.2",
"@types/html-webpack-plugin": "^3.2.1",
"@types/mini-css-extract-plugin": "^0.8.0",
"@types/node": "^12.7.5",
"@types/optimize-css-assets-webpack-plugin": "^5.0.0",
"@types/terser-webpack-plugin": "^1.2.1",
"@types/webpack": "^4.39.1",
"@types/webpack-dev-server": "^3.1.7",
"@typescript-eslint/eslint-plugin": "^2.2.0",
"@typescript-eslint/parser": "^2.2.0",
"autoprefixer": "^9.6.1",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"clean-webpack-plugin": "^3.0.0",
"cross-env": "^5.2.1",
"css-loader": "^3.2.0",
"eslint": "^5.16.0",
"eslint-config-prettier": "^6.3.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"fork-ts-checker-webpack-plugin": "^1.5.0",
"html-webpack-plugin": "^3.2.0",
"mini-css-extract-plugin": "^0.8.0",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"postcss": "^7.0.18",
"postcss-cli": "^6.1.3",
"postcss-loader": "^3.0.0",
"prettier": "1.18.2",
"tailwindcss": "^1.1.2",
"terser-webpack-plugin": "^2.0.1",
"ts-node": "^8.3.0",
"tsconfig-paths": "^3.8.0",
"typescript": "^3.6.2",
"webpack": "^4.39.3",
"webpack-cli": "^3.3.8",
"webpack-dev-server": "^3.8.0"
},
"dependencies": {
"gsap": "^2.1.3"
}
}