-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
74 lines (74 loc) · 3.36 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
{
"name": "github-pages-boilerplate",
"version": "1.0.0",
"description": "Github Pages SPA TypeScript boilerplate",
"repository": "https://github.com/gfmio/github-pages-boilerplate",
"author": "Frédérique Mittelstaedt <me@gfm.io> (https://www.gfm.io)",
"license": "MIT",
"private": true,
"scripts": {
"build:debug": "webpack-cli --config ./config/webpack/webpack.debug.js",
"build:debug:watch": "webpack-cli --config ./config/webpack/webpack.debug.js --watch",
"build:release": "NODE_ENV=production webpack-cli --config ./config/webpack/webpack.release.js",
"build:release:watch": "NODE_ENV=production webpack-cli --config ./config/webpack/webpack.release.js --watch",
"build": "npm run build:release",
"build:watch": "npm run build:release:watch",
"start:debug": "webpack-dev-server --mode development --config ./config/webpack/webpack.debug.js",
"start:debug:watch": "webpack-dev-server --watch --mode development --config ./config/webpack/webpack.debug.js",
"start:release": "NODE_ENV=production webpack-dev-server --mode production --config ./config/webpack/webpack.release.js",
"start:release:watch": "NODE_ENV=production webpack-dev-server --watch --mode production --config ./config/webpack/webpack.release.js",
"start": "npm run start:release",
"start:watch": "npm run start:release:watch",
"watch:debug": "npm-run-all start:debug:watch",
"watch:release": "npm-run-all start:release:watch",
"watch": "npm run watch:debug",
"pre-release": "npm run build",
"release": "npm run pre-release && gh-pages -t -d ./dist/release",
"clean:dist:debug": "rm -rf ./dist/debug",
"clean:dist:release": "rm -rf ./dist/release",
"clean:dist": "rm -rf ./dist",
"clean:node": "rm -rf ./node_modules",
"clean": "rm -rf ./dist ./node_modules",
"prebuild": "npm-run-all clean:dist:release test",
"pretest": "npm run lint",
"test": "mocha --reporter spec --require ./config/tests/mocha.tshook.js ./tests/**/*.{js,ts,tsx}",
"test:watch": "mocha --reporter spec --require ./config/tests/mocha.tshook.js --watch --watch-extensions js,ts,tsx ./tests/**/*.{js,ts,tsx}",
"lint": "tslint -c ./config/tslint/tslint.json -p ./config/tsconfig/tsconfig.json",
"webpack-bundle-stats": "NODE_ENV=production webpack --profile --json --config ./config/webpack/webpack.release.js > stats.json"
},
"dependencies": {
"react": "^16.4.0",
"react-dom": "^16.4.0",
"react-router": "^4.3.1",
"react-router-dom": "^4.3.1"
},
"devDependencies": {
"@types/chai": "^4.1.3",
"@types/mocha": "^5.2.1",
"@types/react": "^16.3.17",
"@types/react-dom": "^16.0.6",
"@types/react-router": "^4.0.26",
"@types/react-router-dom": "^4.2.7",
"app-manifest-webpack-plugin": "^1.1.2",
"awesome-typescript-loader": "^5.0.0",
"chai": "^4.1.2",
"copy-webpack-plugin": "^4.5.1",
"css-loader": "^0.28.11",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"gh-pages": "^1.2.0",
"html-webpack-plugin": "^3.2.0",
"mocha": "^5.2.0",
"node-sass": "^4.9.0",
"npm-run-all": "^4.1.3",
"sass-loader": "^7.0.3",
"source-map-loader": "^0.2.3",
"style-loader": "^0.21.0",
"ts-node": "^6.1.0",
"tslint": "^5.10.0",
"typescript": "^2.8.3",
"webpack": "^4.8.1",
"webpack-cli": "^2.1.3",
"webpack-dev-server": "^3.1.4",
"webpack-merge": "^4.1.2"
}
}