-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.51 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.51 KB
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
{
"name": "anaander",
"version": "0.2.0",
"description": "anaander",
"main": "index.tsx",
"scripts": {
"test": "jest",
"start": "webpack-dev-server --port 8080 --host 0.0.0.0",
"build": "webpack --env=prod",
"predeploy": "npm run build",
"deploy": "gh-pages -d dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hervan/anaander.git"
},
"author": "hervan",
"license": "ISC",
"bugs": {
"url": "https://github.com/hervan/anaander/issues"
},
"homepage": "https://hervan.github.io/anaander",
"devDependencies": {
"@types/jest": "*",
"@types/react": "*",
"@types/react-dom": "*",
"awesome-typescript-loader": "*",
"bulma": "*",
"css-loader": "*",
"file-loader": "*",
"gh-pages": "*",
"html-webpack-plugin": "*",
"immutable": "*",
"jest": "*",
"react": "*",
"react-addons-test-utils": "*",
"react-dom": "*",
"source-map-loader": "*",
"style-loader": "*",
"tslint-config-prettier": "^1.1.0",
"typescript": "*",
"uglify-es": "git+https://github.com/mishoo/UglifyJS2.git#harmony",
"uglify-js": "git+https://github.com/mishoo/UglifyJS2.git#harmony",
"uglifyjs-webpack-plugin": "*",
"url-loader": "*",
"webpack": "*",
"webpack-dev-server": "*"
},
"jest": {
"transform": {
"^.+\\.(ts|tsx)$": "./preprocessor.js"
},
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"testMatch": [
"<rootDir>/src/tests/*.(ts|tsx|js)"
]
}
}