-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
93 lines (93 loc) · 3.21 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
{
"name": "sketch-plugin-boilerplate",
"description": "Basic development boilerplate for Sketch plugins",
"author": "Julian Burr",
"version": "0.0.3",
"repository": {
"type": "git",
"url": "https://github.com/julianburr/sketch-plugin-boilerplate"
},
"devDependencies": {
"autoprefixer": "^7.1.2",
"babel-cli": "^6.24.1",
"babel-core": "^6.25.0",
"babel-eslint": "^7.1.1",
"babel-helpers": "^6.16.0",
"babel-loader": "^7.1.1",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-module-resolver": "^2.4.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-object-rest-spread": "^6.20.2",
"babel-preset-es2015": "^6.18.0",
"babel-preset-es2015-rollup": "^3.0.0",
"babel-preset-react-app": "^2.0.1",
"case-sensitive-paths-webpack-plugin": "^1.1.4",
"chalk": "^1.1.3",
"child_process": "^1.0.2",
"clear": "^0.0.1",
"connect-history-api-fallback": "^1.3.0",
"css-loader": "^0.26.1",
"detect-port": "^1.1.0",
"dotenv": "^4.0.0",
"eslint": "^3.14.0",
"eslint-config-semistandard": "^7.0.0",
"eslint-config-standard": "^6.2.1",
"eslint-loader": "^1.6.1",
"eslint-plugin-no-unused-vars-rest": "^1.0.4",
"eslint-plugin-promise": "^3.4.0",
"eslint-plugin-react": "^6.9.0",
"eslint-plugin-standard": "^2.0.1",
"extract-text-webpack-plugin": "^3.0.0",
"file-loader": "^0.9.0",
"fs-extra": "^1.0.0",
"html-webpack-plugin": "^2.29.0",
"http-proxy-middleware": "^0.17.3",
"jest": "^20.0.4",
"json-loader": "^0.5.4",
"log-update": "^2.0.0",
"node-sass": "^4.3.0",
"object-assign": "^4.1.1",
"path": "^0.12.7",
"path-exists": "^3.0.0",
"postcss-flexbugs-fixes": "^3.0.0",
"postcss-loader": "^1.2.2",
"react-dev-utils": "^3.0.2",
"react-error-overlay": "^1.0.9",
"readline": "^1.3.0",
"recursive-readdir": "^2.1.0",
"sass-loader": "^6.0.6",
"style-loader": "^0.18.2",
"url": "^0.11.0",
"url-loader": "^0.5.8",
"watch": "^1.0.1",
"webpack": "^3.1.0",
"webpack-dev-server": "^2.5.1",
"webpack-manifest-plugin": "^1.1.2"
},
"scripts": {
"start": "node scripts/start.js",
"start:webview": "node scripts/start-webview.js",
"build": "node scripts/build.js",
"bundle": "yarn build && node scripts/plugin/bundle.js",
"lint": "yarn lint:plugin && yarn lint:webview",
"lint:plugin": "eslint ./src/plugin/ -c ./config/plugin/eslint.js || true",
"lint:webview": "eslint ./src/webview/ -c ./config/webview/eslint.js || true",
"lint-fix": "yarn lint-fix:plugin && yarn lint-fix:webview",
"lint-fix:plugin": "eslint ./src/plugin/ --fix -c ./config/plugin/eslint.js || true",
"lint-fix:webview": "eslint ./src/webview/ --fix -c ./config/webview/eslint.js || true",
"lint-fox": "node scripts/utils/fox.js && yarn lint-fix",
"todos": "node scripts/utils/todos.js",
"test": "jest ./__tests__"
},
"dependencies": {
"cocoascript-class": "^0.1.2",
"core-decorators": "^0.15.0",
"moment": "^2.17.1",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"react-redux": "^5.0.2",
"react-router": "^3.0.2",
"react-router-redux": "^4.0.7",
"redux": "^3.6.0"
}
}