-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
95 lines (95 loc) · 3.84 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
{
"name": "alsatian-website",
"version": "1.0.0",
"description": "Website for alsatian test framework (https://github.com/alsatian-test/alsatian)",
"main": "index.js",
"scripts": {
"build": "npm-run-all build-scripts build-server build-web-app",
"build-web-app": "npm-run-all build-web-app-*",
"build-web-app-images": "imagemin public/src/images/**/*.* --out-dir=public/dist/images",
"build-web-app-typescript": "webpack --optimize-minimize",
"build-web-app-html": "node scripts/build-html",
"build-scripts": "tsc -p ./scripts",
"build-server": "tsc -p ./server",
"dev": "npm run build-scripts && npm run build-server && npm-run-all --parallel start-web-server dev-web-app",
"dev-web-app": "npm-run-all --parallel expose-to-networked-devices build-web-app-images dev-web-app-*",
"dev-web-app-typescript": "webpack --watch --devtool source-map",
"dev-web-app-html": "npm run watch-web-app-html",
"watch-web-app-html": "node scripts/build-html --watch",
"expose-to-networked-devices": "browser-sync start --proxy localhost:3000 --files \"css/*.css\"",
"review": "npm run review-typescript & npm run review-sass",
"review-typescript": "tslint \"**/*.ts\" \"**/*.tsx\" --exclude \"**/*.d.ts\" --exclude \"node_modules/**/*.*\"",
"review-sass": "sass-lint \"**/*.scss\" --ignore \"node_modules/**/*.*\"",
"pretest": "npm run build-unit-tests",
"test": "npm run review && npm run unit-tests",
"build-unit-tests": "tsc",
"end-to-end-tests": "alsatian \"./test/end-to-end/**/*.spec.js\" -t 10000",
"unit-tests": "alsatian \"./public/**/*.spec.js\"",
"prestart": "npm run build",
"start-web-server": "node server/startup.js",
"start": "npm run start-web-server",
"switch-to-deploy": "git checkout gh-pages-test && git merge master",
"clean-for-deploy": "npm-run-all clean-configs clean-source",
"clean-source": "rimraf ./public ./scripts ./server ./test",
"clean-configs": "rimraf .gitignore ./.vscode *.yml *.log *.log.* webpack.config.js",
"move-dist-to-root": "mv ./public/dist ./",
"push-to-deploy": "git commit -am 'autodeploy' && git push origin gh-pages-test",
"github-deploy": "npm-run-all switch-to-deploy build move-dist-to-root clean-for-deploy push-to-deploy"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alsatian-test/alsatian-website.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/alsatian-test/alsatian-website/issues"
},
"homepage": "https://github.com/alsatian-test/alsatian-website#readme",
"dependencies": {
"alsatian": "^1.0.0",
"compression": "^1.6.2",
"express": "^4.14.0",
"highlight.js": "^9.8.0",
"monaco-editor": "^0.8.0",
"prismjs": "^1.5.1",
"react": "^15.2.0",
"react-dom": "^15.2.0",
"react-router": "^3.0.0",
"redux": "^3.5.2",
"serve-static": "^1.11.1"
},
"devDependencies": {
"@types/compression": "0.0.33",
"@types/express": "^4.0.34",
"@types/handlebars": "^4.0.31",
"@types/node": "^7.0.7",
"@types/prismjs": "^1.4.18",
"@types/react": "^15.0.0",
"@types/react-dom": "^0.14.18",
"@types/react-router": "^3.0.0",
"@types/selenium-webdriver": "^2.53.38",
"@types/serve-static": "^1.7.31",
"@types/watch": "0.0.28",
"breakpoint-sass": "^2.7.0",
"browser-sync": "^2.17.5",
"css-loader": "^0.26.1",
"extract-text-webpack-plugin": "^2.0.0-rc.3",
"handlebars": "^4.0.6",
"imagemin-cli": "^3.0.0",
"node-sass": "^4.5.0",
"npm-run-all": "^4.0.0",
"onchange": "^3.0.2",
"rimraf": "^2.6.1",
"sass-lint": "^1.10.2",
"sass-loader": "^6.0.2",
"selenium-webdriver": "^3.0.1",
"style-loader": "^0.13.1",
"susy": "^2.2.12",
"ts-loader": "^2.0.0",
"tslint": "^4.0.2",
"typescript": "^2.1.4",
"watch": "^1.0.1",
"webpack": "^2.2.0"
}
}