-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
34 lines (34 loc) · 1019 Bytes
/
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
{
"name": "regex-people",
"version": "1.0.0",
"description": "",
"main": "index.html",
"scripts": {
"build": "rm -rf build && parcel build src/index.html --out-dir build/ --public-url ./",
"start": "parcel src/index.html",
"dev": "parcel serve src/index.html && parcel watch src/index.html",
"clean": "rm -rf .cache node_modules package-lock.json dist",
"deploy": "git subtree push --prefix build origin gh-pages"
},
"author": "Manz",
"license": "ISC",
"devDependencies": {
"@types/css": "0.0.31",
"@types/lodash-es": "^4.17.0",
"autoprefixer": "^8.6.0",
"babel-preset-env": "^1.7.0",
"cssnano": "^3.10.0",
"parcel-bundler": "^1.8.1",
"postcss": "^6.0.22",
"postcss-import": "^11.1.0",
"postcss-import-url": "^3.0.4",
"postcss-nested": "^3.0.0",
"postcss-preset-env": "^5.1.0",
"stylelint-config-recommended": "^2.1.0",
"typescript": "^2.9.1"
},
"dependencies": {
"lodash-es": "^4.17.10",
"snarkdown": "^1.2.2"
}
}