-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 938 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 938 Bytes
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
{
"name": "humansandistatic",
"version": "1.0.0",
"description": "Humans and I static site",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server --watch --inline",
"postinstall": "typings install",
"build": "npm run webpackBuild && npm run precache",
"webpackBuild": "webpack",
"precache": "sw-precache --verbose --config=sw-precache-config.js",
"test": "test"
},
"author": "Jeremy Cantu",
"license": "ISC",
"devDependencies": {
"css-loader": "^0.28.11",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^1.1.11",
"image-webpack-loader": "^3.6.0",
"node-sass": "^4.8.3",
"sass-loader": "^6.0.7",
"style-loader": "^0.19.1",
"sw-precache": "^5.2.1",
"ts-loader": "^2.3.7",
"typescript": "^2.7.2",
"typings": "^2.1.0",
"webpack": "^3.11.0",
"webpack-dev-server": "^2.11.2"
},
"dependencies": {
"tachyons": "^4.9.1"
}
}