This repository was archived by the owner on Feb 8, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.42 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.42 KB
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
{
"name": "polymer-starter-kit",
"license": "BSD-3-Clause",
"devDependencies": {
"@types/jest": "^20.0.4",
"babel-core": "^6.25.0",
"babel-eslint": "^7.2.3",
"babel-jest": "^20.0.3",
"babel-loader": "^7.1.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-env": "^1.5.2",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"copy-webpack-plugin": "^4.0.1",
"eslint": "^3.19.0",
"eslint-config-airbnb-base": "^11.2.0",
"eslint-config-google": "^0.7.0",
"eslint-config-prettier": "^2.2.0",
"eslint-plugin-html": "^2.0.0",
"eslint-plugin-import": "^2.6.0",
"eslint-plugin-prettier": "^2.1.2",
"exports-loader": "^0.6.4",
"express-http-proxy": "^1.0.4",
"file-loader": "^0.11.2",
"glob": "^7.1.2",
"history-server": "^1.2.0",
"html-webpack-plugin": "^2.28.0",
"jest": "^20.0.4",
"npm-run-all": "^4.0.2",
"prettier": "^1.4.4",
"tslint-config-airbnb": "^5.2.1",
"tslint-config-prettier": "^1.1.0",
"wc-loader": "^1.1.4",
"webpack": "^3.0.0",
"webpack-bundle-analyzer": "^2.8.2"
},
"scripts": {
"lint": "run-p lint:javascript lint:typescript lint:html",
"lint:javascript": "eslint . --ignore-path .gitignore --fix --cache .",
"lint:html": "eslint . --ext html --ignore-path .gitignore --fix --cache .",
"lint:typescript": "tslint --fix -c tslint.json 'src/**/*.ts' && prettier --write --single-quote true --trailing-comma all '**/*.ts'",
"test:integration": "polymer build # test that psk builds without error with the CLI",
"prebuild": "rm -rf build",
"build": "webpack --env.build",
"analyze-bundle": "webpack --env.analyzeBundle",
"webpack-test-server": "webpack-dev-server --env.test",
"wct": "polymer test",
"wct:watch": "polymer test -p",
"test": "run-p test:unit test:wct",
"test:unit": "jest --config jest-config.json",
"test:wct": "run-p --race webpack-test-server wct",
"test:watch": "run-p --race webpack-test-server wct:watch",
"start": "webpack-dev-server --env.start",
"preserve": "npm run build",
"serve": "history-server build"
},
"private": true,
"dependencies": {
"redux": "^3.7.1",
"ts-loader": "^2.2.0",
"tslint": "^5.4.3",
"typescript": "^2.4.1",
"typescript-fsa": "^2.3.1",
"typescript-fsa-reducers": "^0.4.4",
"webpack-copy-plugin": "^0.0.4",
"webpack-dev-server": "^2.5.0"
}
}