This repository has been archived by the owner on May 13, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
57 lines (57 loc) · 1.69 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
{
"name": "react-mobx-typescript-experiments",
"version": "0.1.9",
"description": "experiments with MobX in a React application written with TypeScript",
"homepage": "https://ryanatkn.github.io/react-mobx-typescript-experiments",
"license": "Unlicense",
"author": {
"name": "Ryan Atkinson",
"email": "[email protected]",
"url": "https://www.ryanatkn.com"
},
"scripts": {
"start": "webpack-dev-server --progress --colors --inline",
"typecheck": "tsc --noEmit",
"lint": "tslint -t verbose src/**/*.ts{,x}",
"build": "NODE_ENV=production webpack --progress --colors",
"preversion": "npm run typecheck && npm run lint",
"version": "npm run build && git add .",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/ryanatkn/react-mobx-typescript-experiments.git"
},
"dependencies": {
"lodash": "^4.6.1",
"mobx": "^3.4.1",
"mobx-react": "^4.3.5",
"normalize.css": "^4.0.0",
"purecss": "^0.6.0",
"react": "^15.0.0",
"react-dom": "^15.0.0",
"react-router": "^2.0.1"
},
"devDependencies": {
"autoprefixer": "^6.3.6",
"css-loader": "^0.23.1",
"postcss-calc": "^5.2.1",
"postcss-color-function": "^2.0.1",
"postcss-import": "^8.1.2",
"postcss-loader": "^0.8.2",
"pre-commit": "^1.1.2",
"precss": "^1.4.0",
"style-loader": "^0.13.0",
"ts-loader": "^0.8.1",
"tslint": "^3.6.0",
"tslint-config-strictish": "ryanatkn/tslint-config-strictish#v3.12.0",
"tslint-loader": "^2.1.3",
"typescript": "^2.0.0",
"webpack": "^1.12.14",
"webpack-dev-server": "^1.14.1"
},
"pre-commit": [
"lint",
"typecheck"
]
}